WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Separate AssetsDirectory as a model too #373

Separate AssetsDirectory as a model too

Separate AssetsDirectory as a model too #373

Workflow file for this run

name: Tests (windows/macOS/ubuntu)
on: push
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node: [20, 22, 24]
name: Node ${{ matrix.node }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: install dependencies
run: npm ci
- name: run tests
shell: bash
run: for i in {1..4}; do npm run test:ci || exit 1; done
- name: Coveralls
uses: coverallsapp/github-action@v2