Skip to content

Merge pull request #57 from PRIME-SV/REQUEST/#54 #86

Merge pull request #57 from PRIME-SV/REQUEST/#54

Merge pull request #57 from PRIME-SV/REQUEST/#54 #86

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- name: lint
run: npm run lint
- name: test
run: npm run test:ci