Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Bump ava from 5.1.0 to 5.3.1 #39

Bump ava from 5.1.0 to 5.3.1

Bump ava from 5.1.0 to 5.3.1 #39

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: setup node 16
uses: actions/setup-node@v3
with:
node-version: "16"
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: run tests
run: |
npm ci
npm test