Skip to content

Build(deps-dev): Bump @rollup/plugin-commonjs from 25.0.3 to 25.0.4 #4003

Build(deps-dev): Bump @rollup/plugin-commonjs from 25.0.3 to 25.0.4

Build(deps-dev): Bump @rollup/plugin-commonjs from 25.0.3 to 25.0.4 #4003

Workflow file for this run

name: Tests
on: [pull_request]
jobs:
test:
name: Test on node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [16, 18, 20]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Use node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
registry-url: https://registry.npmjs.org
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Bootstrap
run: yarn bootstrap
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Bundle
run: yarn bundle