Skip to content

Fix: CIが落ちてるのを直す #29

Fix: CIが落ちてるのを直す

Fix: CIが落ちてるのを直す #29

Workflow file for this run

name: "Test"
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: "pnpm"
- name: Install Dependencies
run: |
pnpm install
- name: Lint
run: |
pnpm run lint
- name: Test Dry Run
run: |
pnpm run run:collect-artifacts --skipDownload
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}