This repository was archived by the owner on Apr 15, 2026. It is now read-only.
build(deps-dev): bump @swc/core from 1.15.18 to 1.15.21 #2190
Workflow file for this run
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: Build and Test | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 22 | |
| - run: npm run setup | |
| - run: npm i --no-save class-validator | |
| - run: npm test | |
| - run: npm run build | |
| - uses: codecov/codecov-action@v3 | |
| with: | |
| files: ./coverage/lcov.info | |
| fail_ci_if_error: false | |
| verbose: true |