Browse Source

[test] try to auto test Windows and MacOS

pull/567/head
LouisLam 3 years ago
parent
commit
20af179a82
  1. 3
      .github/workflows/auto-test.yml
  2. 1
      package.json

3
.github/workflows/auto-test.yml

@ -11,10 +11,11 @@ on:
jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, ubuntu-latest]
node-version: [14.x, 15.x, 16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

1
package.json

@ -21,6 +21,7 @@
"start-server-dev": "cross-env NODE_ENV=development node server/server.js",
"build": "vite build",
"test": "node test/prepare-test-server.js && node server/server.js --port=3002 --data-dir=./data/test/ --test",
"test-with-build": "npm run build && npm test",
"jest": "node test/prepare-jest.js && jest",
"tsc": "tsc",
"vite-preview-dist": "vite preview --host",

Loading…
Cancel
Save