Skip to content

chore(deps): lock file maintenance #120

chore(deps): lock file maintenance

chore(deps): lock file maintenance #120

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Lint and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache node modules
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: npm i
env:
CI: true
- name: Lint files
run: npm run lint
- name: Run tests
run: npm test