Skip to content

Update node version and try to fix release workflow #8

Update node version and try to fix release workflow

Update node version and try to fix release workflow #8

Workflow file for this run

name: Linter
on:
pull_request:
push:
branches: [ main ]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
linter:
name: Linter
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4.0.0
- name: Setup Node.js
uses: actions/setup-node@v3.8.1
with:
node-version-file: .nvmrc
cache: npm
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Check code style
run: npm run lint