Skip to content

chore: Bump nock from 13.3.6 to 13.4.0 #272

chore: Bump nock from 13.3.6 to 13.4.0

chore: Bump nock from 13.3.6 to 13.4.0 #272

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