Skip to content

add gs-tools v2.9.14 #90

add gs-tools v2.9.14

add gs-tools v2.9.14 #90

Workflow file for this run

name: Run Tests

Check failure on line 1 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

(Line: 27, Col: 13): Unexpected symbol: '"FALSE"'. Located at position 18 within expression: env.RUN_TESTS != "FALSE", (Line: 31, Col: 13): Unexpected symbol: '"FALSE"'. Located at position 18 within expression: env.RUN_TESTS != "FALSE"
on:
pull_request:
types:
- opened
- synchronize
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "18"
- name: Install dependencies
run: |
npm install
- name: Run build:prod
run: |
npm run build:prod
- name: Run build:test:prod
if: env.RUN_TESTS != "FALSE"
run: |
npm run build:test:prod
- name: Run test
if: env.RUN_TESTS != "FALSE"
run: |
npm run test