Add package-lock.json to track dependencies and ensure consistent i…
#2
This file contains hidden or 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: Tests | |
| on: | |
| push: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js lts/* | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| check-latest: true | |
| - run: npm ci | |
| - run: npm run type-check | |
| - run: npm run coverage | |
| - uses: coverallsapp/github-action@master | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - run: npm run build |