Skip to content

Migrate to nx workspace #5

Migrate to nx workspace

Migrate to nx workspace #5

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
build-lib:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: ./.github/actions/node-setup
- name: Build
run: npm run build:lib
build-playground:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: ./.github/actions/node-setup
- name: Build playground
run: npm run build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: ./.github/actions/node-setup
- name: Run tests
run: npm run ci:test
lint:

Check failure on line 45 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 45, Col: 5): Unexpected value 'lint'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: ./.github/actions/node-setup
- name: Run tests
run: npm run ci:lint