Skip to content

ci: move ci.yml to correct dir (#2) #3

ci: move ci.yml to correct dir (#2)

ci: move ci.yml to correct dir (#2) #3

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
lint-build-test:
name: Lint, build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
- run: |
npm ci
- run: |
npm run lint
- run: |
npm run build
- run: |
npm run test