Skip to content

Point to May 2024 #1294

Point to May 2024

Point to May 2024 #1294

Workflow file for this run

name: CI
on:
- push
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 16
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
- name: Install
run: npm install
- name: Test
run: make test
- name: Coverage
run: npm run coverage
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}