Skip to content

Commit

Permalink
💚 upgrade node version for lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Doccrazy committed Dec 24, 2023
1 parent ef7cb3b commit 76e52e0
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,21 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
cache: yarn

- name: Install dependencies
run: yarn install

- name: Lint
run: yarn lint

- name: Test
run: yarn test

0 comments on commit 76e52e0

Please sign in to comment.