Lock file maintenance #476
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: Test | |
on: | |
push: | |
paths-ignore: | |
- 'docs/**' | |
- '*.md' | |
# schedule: | |
# - cron: 0 20 * * * | |
jobs: | |
test: | |
name: test on ${{ matrix.os-release }} node@${{ matrix.node-version }} | |
runs-on: ${{ matrix.os-release }} | |
strategy: | |
matrix: | |
node-version: | |
- 20 | |
- 22 | |
os-release: | |
- ubuntu-latest | |
# do not run tests on windows until vite issue with importing file with shebang is resolved | |
# - windows-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
- run: npm run test | |
coverage: | |
name: collect coverage | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 | |
with: | |
node-version-file: package.json | |
- run: npm ci | |
- run: npm run test:unit | |
- uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: unit | |
# - run: rm -rf coverage | |
# - run: npm run test:integration | |
# - uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
# flags: integration |