chore(deps-dev): bump rollup from 3.29.4 to 4.3.0 #808
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
env: | |
TEST_API_KEY: ${{ secrets.TEST_API_KEY }} | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
strategy: | |
matrix: | |
node-version: [14.18.0, 14.x, 16.x, 18.x] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm install | |
- name: Build project | |
run: npm run build | |
- name: Run tests | |
run: npm run test | |
- name: Upload coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
directory: ./coverage | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} |