Skip to content

chore(deps-dev): bump rollup from 4.19.1 to 4.22.4 (#84) #137

chore(deps-dev): bump rollup from 4.19.1 to 4.22.4 (#84)

chore(deps-dev): bump rollup from 4.19.1 to 4.22.4 (#84) #137

Workflow file for this run

name: CI
on:
push:
branches: ['*']
pull_request:
branches: ['*']
jobs:
ci:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 16, 18, 20, 22 ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Installing dependencies
run: npm install
- name: ESLint check
run: npx eslint --ignore-path .gitignore .
- name: Test & coverage
run: npm run test
- name: Build with Rollup
run: npm run build
- name: Send coverage report to Codecov
uses: codecov/codecov-action@v3