Skip to content

Fix corepack error and update Yarn to 3.7.0 #275

Fix corepack error and update Yarn to 3.7.0

Fix corepack error and update Yarn to 3.7.0 #275

Workflow file for this run

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: 16
# cache: 'yarn'
- name: Execute build
run: |
corepack enable
yarn ci
yarn format-check
yarn test
yarn package
- name: Build Docker image
working-directory: ./docker
run: |
docker build \
--tag "gatlingcorp/enterprise-runner:latest" \
.