Skip to content

ci: move ci.yml to correct dir #1

ci: move ci.yml to correct dir

ci: move ci.yml to correct dir #1

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 lint
- run: |
npm build
- run: |
npm test