Skip to content

Update dependency @rollup/plugin-commonjs to v25.0.7 #44

Update dependency @rollup/plugin-commonjs to v25.0.7

Update dependency @rollup/plugin-commonjs to v25.0.7 #44

Workflow file for this run

name: test
on:
# push:
# branches:
# - main
pull_request:
branches:
- main
- next
- alpha
- beta
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [16, 18]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm i
- run: pnpm build
- run: pnpm test
- uses: codecov/codecov-action@v3