Skip to content

build(deps): lock file maintenance #2054

build(deps): lock file maintenance

build(deps): lock file maintenance #2054

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
permissions:
actions: read
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
env:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
jobs:
main:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- run: yarn install --immutable
- uses: nrwl/nx-set-shas@v4
- run: yarn nx-cloud record -- nx format:check
- run: yarn nx affected -t lint
- run: yarn nx affected -t build
- run: yarn nx affected -t test --configuration=ci