Skip to content

Create README.md

Create README.md #15

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
main:
runs-on: ubuntu-latest
name: CI
permissions:
contents: 'read'
actions: 'read'
defaults:
run:
working-directory: './boardui'
steps:
- uses: actions/checkout@v2
- run: npm ci
- run: npx nx format:check
- run: npx nx run-many --target=lint --parallel=3
- run: npx nx run-many --target=test --parallel=3 --configuration=ci
- run: npx nx run-many --target=build --parallel=3