Skip to content

Commit

Permalink
chore: fix github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Dartui committed Apr 17, 2024
1 parent e1da087 commit 1d02c9b
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
node-version: '16'
cache: yarn
- name: Install yarn dependencies
run: yarn install --immutable
Expand All @@ -90,11 +90,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '12'
- name: Install Node dependencies
uses: bahmutov/npm-install@v1
node-version: '16'
cache: yarn
- name: Install yarn dependencies
run: yarn install --immutable
- name: CSS lint
run: yarn lint:css
js:
Expand All @@ -104,10 +105,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '12'
- name: Install Node dependencies
uses: bahmutov/npm-install@v1
node-version: '16'
cache: yarn
- name: Install yarn dependencies
run: yarn install --immutable
- name: JS lint
run: yarn lint:js

0 comments on commit 1d02c9b

Please sign in to comment.