Skip to content

feat

feat #9

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
- '*/*'
- '**'
- '!main'
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v3
- run: yarn install --immutable
- run: nx run-many --target=install --all -parallel
- run: npx nx affected -t lint
- run: npx nx affected -t test --configuration=ci
- run: npx nx affected -t build