Skip to content

feat: Improve test convention, update to v8 (#20) #134

feat: Improve test convention, update to v8 (#20)

feat: Improve test convention, update to v8 (#20) #134

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install npm
run: npm install -g npm@8
- name: Install Dependencies
run: npm ci
- name: Test
uses: GabrielBB/xvfb-action@v1
with:
run: npm test