Skip to content

Bump rollup from 2.79.1 to 3.26.0 #12

Bump rollup from 2.79.1 to 3.26.0

Bump rollup from 2.79.1 to 3.26.0 #12

Workflow file for this run

name: Run Unit Tests
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: "16.15.1"
cache: "npm"
- name: Install Dependencies
run: npm install
- name: Run Unit Tests
run: npm run test:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}