Skip to content

🚀 Migrate Project Creation from npm to pnpm for Faster Installs #69

🚀 Migrate Project Creation from npm to pnpm for Faster Installs

🚀 Migrate Project Creation from npm to pnpm for Faster Installs #69

Workflow file for this run

name: Run Tests
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"

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

View workflow run for this annotation

GitHub Actions / Run Tests

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 27, Col: 13): Unexpected symbol: '"FALSE"'. Located at position 18 within expression: env.RUN_TESTS != "FALSE" .github/workflows/test.yml (Line: 31, Col: 13): Unexpected symbol: '"FALSE"'. Located at position 18 within expression: env.RUN_TESTS != "FALSE"
run: |
npm run build:test:prod
- name: Run test
if: env.RUN_TESTS != "FALSE"
run: |
npm run test