Skip to content

initial commit

initial commit #1

Workflow file for this run

name: Tests
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- uses: actions/cache@v2
with:
path: ~/.npm
key: v1/${{ runner.os }}/node-14/${{ hashFiles('**/package-lock.lock') }}
restore-keys: v1/${{ runner.os }}/node-14/
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test
env:
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}