chore(deps): update ExodusMovement/actions requirement to fe42bdd64ab283db272fdc3305f736f2c16c71b0 #420
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@fe42bdd64ab283db272fdc3305f736f2c16c71b0 | |
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@fe42bdd64ab283db272fdc3305f736f2c16c71b0 | |
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@fe42bdd64ab283db272fdc3305f736f2c16c71b0 | |
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 |