Skip to content

chore: update husky pre-commit #28

chore: update husky pre-commit

chore: update husky pre-commit #28

Workflow file for this run

name: build
on:
push:
branches-ignore:
- dependabot/*
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install packages and symlink local dependencies
run: |
npm ci
- name: Lint code
run: |
npm run lint
- name: Run tests
run: |
npm test