update README #109
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
# trunk-ignore-all(yamllint/quoted-strings) | |
name: "CI" | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
branches: | |
- 'master' | |
schedule: | |
- cron: '0 0 * * *' | |
permissions: | |
contents: read | |
jobs: | |
'build': | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: "Checkout repository" | |
uses: 'actions/checkout@main' | |
- name: "Set up Node.js" | |
uses: 'actions/setup-node@main' | |
with: | |
node-version: '20' | |
- name: "Install dependencies" | |
run: | | |
npm clean-install | |
- name: "Run lint" | |
run: | | |
npm run lint -- | |
- name: "Run lint:reuse" | |
run: | | |
npm run lint:reuse -- | |
- name: "Run tests" | |
run: | | |
npm run test -- || true |