Skip to content

[修正] nodeバージョンの更新 #29

[修正] nodeバージョンの更新

[修正] nodeバージョンの更新 #29

Workflow file for this run

name: LinterTests
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "22"
- name: allow write in work dir
run: sudo chmod -R 777 .
- name: Install Dependencies
run: |
npm -g install pnpm
pnpm install
- name: Run Linter tests
run: pnpm lint