Skip to content

Bump @rollup/rollup-win32-ia32-msvc from 4.22.4 to 4.29.1 #4738

Bump @rollup/rollup-win32-ia32-msvc from 4.22.4 to 4.29.1

Bump @rollup/rollup-win32-ia32-msvc from 4.22.4 to 4.29.1 #4738

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
- dev
paths-ignore:
- "**/*.md"
pull_request:
types: [opened, reopened, synchronize]
jobs:
build:
strategy:
matrix:
node-version: [18, 20]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run install-locally
- name: Unset CI
run: echo "CI=false" >> "$GITHUB_ENV"
if: runner.os != 'Windows'
- name: Unset CI
run: echo "CI=false" | Out-File -FilePath $env:GITHUB_ENV -Append
if: runner.os == 'Windows'
- run: npm test