Skip to content

test

test #25

Workflow file for this run

name: test
on:
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Set up Node.js environment
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
- name: Install
run: npm ci
- name: Test
run: |
npm run lint
npm run test