chore: Add WIP message to README (#4) #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# NOTE: compilation is done as part of the "prepare" script, which is run during npm ci | |
- name: Checkout/install/compile | |
uses: adamhamlin/checkout-node-project@v1 | |
- name: Lint | |
run: npm run check | |
- name: Tests | |
run: npm test |