This repository was archived by the owner on Jan 23, 2026. It is now read-only.
test error responses in file and bucket apis. coverage 84% #371
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - next | |
| - rc | |
| - next-rc-1 | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: Test / OS ${{ matrix.os }} / Node ${{ matrix.node }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| node: ['20'] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Ensure build works | |
| run: | | |
| npm ci | |
| npm run build | |
| - name: Run tests | |
| run: | | |
| npm t | |
| - name: Upload coverage results to Coveralls | |
| uses: coverallsapp/github-action@master | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| path-to-lcov: ./test/coverage/lcov.info |