Skip to content

Commit

Permalink
use a specific node version for the lint step
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed Nov 9, 2023
1 parent abf2e70 commit 5aba723
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,20 @@ on:
tags:
- "*"

concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
lint:
name: "Linting"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v4
with:
node-version: 16
cache: yarn
- run: yarn install --frozen-lockfile --non-interactive
- run: yarn lint:js

Expand Down

0 comments on commit 5aba723

Please sign in to comment.