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

Bump eslint from 8.43.0 to 8.44.0 #48

Bump eslint from 8.43.0 to 8.44.0

Bump eslint from 8.43.0 to 8.44.0 #48

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