Skip to content

chore(deps-dev): bump rollup from 3.29.4 to 4.13.0 #852

chore(deps-dev): bump rollup from 3.29.4 to 4.13.0

chore(deps-dev): bump rollup from 3.29.4 to 4.13.0 #852

Workflow file for this run

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 }}