chore(deps-dev): bump rollup from 4.22.0 to 4.22.2 #208
Workflow file for this run
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: | |
branches: [main] | |
pull_request: | |
jobs: | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js x64 | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Install build dependencies | |
run: | | |
npm ci | |
npm run build-dist | |
- name: Test | |
run: | | |
npm test | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
files: ${{ github.workspace }}/coverage/coverage-final.json | |
verbose: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
disable_search: true | |
- name: Docs | |
run: | | |
npm run docs |