chore(deps): bump ExodusMovement/lerna-release-action from f7bb33dbbd7a57206eea2fcb79d7fcc2a61bcbb9 to 0e69797f772c12962c090c1aec967e5b277146fc #517
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Checks | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
merge_group: | |
branches: | |
- master | |
push: | |
branches: | |
- master # Keeps the action's cache up-to-date to be shared with PRs | |
permissions: | |
contents: read | |
env: | |
DISABLE_NX_CACHE: ${{ contains(github.event.pull_request.labels.*.name, 'disable-nx-cache') && 'yes' || 'no' }} | |
NX_REJECT_UNKNOWN_LOCAL_CACHE: 0 | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
with: | |
fetch-depth: 0 | |
- uses: ExodusMovement/actions/setup/lerna@06f077a9081a1e973586dde8870e7116873b9b84 | |
with: | |
npm-token: ${{ secrets.NPM_TOKEN }} | |
disable-nx-cache: ${{ env.DISABLE_NX_CACHE }} | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Lint | |
run: yarn lint | |
- name: Format | |
run: yarn format:check | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
timeout-minutes: 35 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: ExodusMovement/actions/setup/lerna@06f077a9081a1e973586dde8870e7116873b9b84 | |
with: | |
npm-token: ${{ secrets.NPM_TOKEN }} | |
disable-nx-cache: ${{ env.DISABLE_NX_CACHE }} | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn test | |
integration-test: | |
name: Test (Integration) | |
runs-on: ubuntu-latest | |
timeout-minutes: 35 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: ExodusMovement/actions/setup/lerna@06f077a9081a1e973586dde8870e7116873b9b84 | |
with: | |
npm-token: ${{ secrets.NPM_TOKEN }} | |
disable-nx-cache: ${{ env.DISABLE_NX_CACHE }} | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Integration Test | |
run: yarn test:integration -- --runInBand |