caec255e16
Only run on a single node version, that way you won't get tripe error annotations, and it's really not neccessary for this repo to test on multiples anyways.
15 lines
248 B
YAML
15 lines
248 B
YAML
name: ci
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '14'
|
|
- run: npm install
|
|
- run: npm test
|