chore: Bump prettier from 3.3.3 to 3.4.2 #429
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: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
# cache is broken until we can enable Corepack directly in setup-node | |
# instead of having to wait to enable it manually later. | |
# See https://github.com/actions/setup-node/issues/531. | |
# cache: 'yarn' | |
- name: Execute build | |
run: | | |
corepack enable | |
yarn config set nodeLinker node-modules | |
yarn plugin import workspace-tools | |
yarn install --immutable | |
yarn format-check | |
yarn test | |
yarn package | |
- name: Build Docker image | |
working-directory: ./docker | |
run: | | |
docker build \ | |
--tag "gatlingcorp/enterprise-runner:latest" \ | |
. |