Skip to content

feat: 76 gen-graphql-schema to handle only graphql or graphql & anoth… #34

feat: 76 gen-graphql-schema to handle only graphql or graphql & anoth…

feat: 76 gen-graphql-schema to handle only graphql or graphql & anoth… #34

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
run: |
npm run build:test:prod
- name: Run test
run: |
npm run test