Merge pull request #5 from TheColorDarkBlue/proofread #2
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: build-test-lint | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v4 | |
- name: use node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- run: npm install # TODO change to npm ci when package.json and package-lock.json are in sync | |
- run: npx tsc --build | |
- run: npx tsc --build --clean | |
- run: npm run test | |
#- run: npx eslint |