Skip to content

Commit 77f82ea

Browse files
author
David Hayes
committed
chore: Restore node-js to its former glory and use v16.
1 parent efd16c5 commit 77f82ea

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/node-js.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Node CI
2+
3+
on: [push]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@master
10+
- uses: actions/setup-node@v2
11+
with:
12+
node-version: 16
13+
- name: npm install, lint, and test
14+
run: |
15+
npm ci
16+
npm run lint --if-present
17+
npm test

0 commit comments

Comments
 (0)