Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Bump serialize-javascript and terser-webpack-plugin #36

Bump serialize-javascript and terser-webpack-plugin

Bump serialize-javascript and terser-webpack-plugin #36

Workflow file for this run

name: Tests
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0'
jobs:
test:
name: Node ${{ matrix.node-versions }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node-versions: ['22.13.0', '22', '24', '26']
include:
- node-versions: '22.13.0'
os: windows-latest
- node-versions: '24'
os: windows-latest
- node-versions: '26'
os: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v5
- name: Node ${{matrix.node-versions}}
uses: actions/setup-node@v4
with:
node-version: ${{matrix.node-versions}}
cache: pnpm
- name: Install Node.js Dependencies
run: pnpm install
- name: Show Installed Versions
run: pnpm list --depth=0
- name: Install Puppeteer Browsers
run: npx puppeteer browsers install chrome
- name: Run Tests
run: pnpm test