Skip to content
This repository was archived by the owner on Apr 17, 2025. It is now read-only.

Commit fefe9a2

Browse files
run lint on 16
1 parent cfc020a commit fefe9a2

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

.github/workflows/pr.yaml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,17 @@ defaults:
1010

1111
jobs:
1212
lint:
13-
container:
14-
image: node:9
15-
credentials:
16-
username: ${{ secrets.DOCKER_HUB_USERNAME }}
17-
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
1813
runs-on: ubuntu-latest
1914
steps:
20-
- uses: actions/checkout@v3
21-
- name: lint
15+
- name: Check out code
16+
uses: actions/checkout@v3
17+
with:
18+
node-version: 16
19+
cache: 'npm'
20+
- name: Install Node
21+
uses: actions/setup-node@v3
22+
with:
23+
node-version: 16
24+
cache: 'npm'
2225
run: |
2326
npm install && npm run build && npm run lint

0 commit comments

Comments
 (0)