Skip to content

chore: migrated from gitlab to github #10

chore: migrated from gitlab to github

chore: migrated from gitlab to github #10

Workflow file for this run

name: Build Project
on:
pull_request:
jobs:
build:
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
os: [macos-13, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Check Node.js version
run: node -v
- name: Check npm versions
run: npm -v
- name: Run clean install
run: npm ci
- run: xvfb-run -a npm test
if: runner.os == 'Linux'
- run: npm test
if: runner.os != 'Linux'