Skip to content

Update nx.json

Update nx.json #6

Workflow file for this run

name: Release
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
- run: npx nx run-many --target=install --all -parallel
- run: npx nx affected -t lint
- run: npx nx affected -t test --configuration=ci --passWithNoTests --exclude=justaname-mono-sdk
- run: npx nx affected -t build
- run: npx nx affected -t release:package --parallel=1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}