Files
Modernizr/.github/workflows/testing.yml
Veeck 1d4c9cee1f Bump dependencies and actions (#2786)
* Update workflow actions

* Update dependencies

---------

Co-authored-by: veeck <gitkraken@veeck.de>
2025-11-23 17:13:55 +01:00

26 lines
697 B
YAML

name: Testing
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [20.x, 22.x, 24.x]
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Installing Node ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Installing dependencies
run: npm ci
- name: Installing gulp command line interface
run: npm install gulp-cli
- name: Run tests
run: npm test -- --no-sandbox --disable-setuid-sandbox