Skip to content

Pin nx version (#4) #13

Pin nx version (#4)

Pin nx version (#4) #13

Workflow file for this run

name: CI
on: [push]
jobs:
ci:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check Copyright
run: |
./verify_copyright.sh
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Lint
run: |
npm i
npm run lint
- name: Build
run: |
npm run build
- name: Test
run: |
npm run test