Skip to content

await websocket connection for flag check #55

await websocket connection for flag check

await websocket connection for flag check #55

Workflow file for this run

name: Pull request - schematic-js
on:
pull_request:
paths:
- js/**
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Yarn install
working-directory: ./js
run: yarn install
- name: Build
working-directory: ./js
run: yarn build
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Yarn install
working-directory: ./js
run: yarn install
- name: Lint
working-directory: ./js
run: yarn lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Yarn install
working-directory: ./js
run: yarn install
- name: Test
working-directory: ./js
run: yarn test