2021-01-16 16:10:57 -05:00
|
|
|
name: Node.js CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-01-16 17:02:36 -05:00
|
|
|
- main
|
2021-01-16 16:10:57 -05:00
|
|
|
- v*
|
|
|
|
pull_request:
|
|
|
|
branches:
|
2021-01-16 17:02:36 -05:00
|
|
|
- main
|
2021-01-16 16:10:57 -05:00
|
|
|
|
|
|
|
jobs:
|
2021-07-29 11:05:22 -04:00
|
|
|
test:
|
|
|
|
name: Lint and test package
|
2021-01-16 16:10:57 -05:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
2021-07-29 11:05:22 -04:00
|
|
|
- name: Setup Node.js
|
2021-01-16 16:10:57 -05:00
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: '14'
|
|
|
|
- name: Install dependencies
|
|
|
|
run: yarn
|
2021-07-29 11:05:22 -04:00
|
|
|
- name: Test
|
2021-01-16 16:10:57 -05:00
|
|
|
run: yarn test
|