Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2021-08-11 13:02:43 +00:00
parent 46043e8a9e
commit 4a0d3378b1
21 changed files with 760 additions and 6 deletions

View file

@ -0,0 +1,25 @@
name: Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
steps:
- uses: actions/checkout@v1
- uses: borales/actions-yarn@v2.0.0
with:
cmd: install
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Tests
run: yarn run test
env:
CI: true