Skip to content

Bump rollup from 4.1.5 to 4.4.0 #128

Bump rollup from 4.1.5 to 4.4.0

Bump rollup from 4.1.5 to 4.4.0 #128

name: PR Tests
# Only run on non-draft PRs, and when PRs are synched
on:
pull_request:
types: [opened, reopened, ready_for_review, synchronize]
# If the PR has other files, a push w/ just .md or /docs
# files will still cause tests to run
paths-ignore:
- "**.md"
- "docs/**"
jobs:
build:
if: github.event.pull_request.draft == false
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Update to NPM 9 for workspace support
run: npm install -g npm@9
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Test in Chrome
run: npm run test:chrome:ci
- uses: codecov/codecov-action@v3
with:
directory: ./coverage