Skip to content

fix: prettier

fix: prettier #2

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
main:
name: Continuous Integration (CI)
runs-on: ubuntu-latest
permissions:
contents: 'read'
actions: 'read'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v3
with:
main-branch-name: 'master'
- run: npm ci
- run: npx nx format:check
- run: npx nx affected -t lint --parallel=3
- run: npx nx affected -t test --parallel=3
- run: npx nx affected -t build --parallel=3