Skip to content

Improving ci test

Improving ci test #1

Workflow file for this run

name: Test
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize, reopened]
jobs:
test-meta:
name: Test meta
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- run: npm --color install
- run: npm --color run test:meta