2020-02-05 20:39:47 +03:00
|
|
|
name: Test
|
2021-06-24 03:03:56 +03:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2020-02-05 20:39:47 +03:00
|
|
|
|
|
|
|
jobs:
|
2021-06-24 03:03:56 +03:00
|
|
|
test:
|
2020-02-05 20:39:47 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-06-24 03:03:56 +03:00
|
|
|
- uses: actions/setup-node@v2
|
2020-02-05 20:39:47 +03:00
|
|
|
with:
|
2021-06-24 03:03:56 +03:00
|
|
|
node-version: '14'
|
2020-02-05 20:39:47 +03:00
|
|
|
- run: npm ci
|
|
|
|
- run: npm test
|