Skip to content

fix(deps): update dependency @hapi/hapi to ^21.3.9 #3940

fix(deps): update dependency @hapi/hapi to ^21.3.9

fix(deps): update dependency @hapi/hapi to ^21.3.9 #3940

Workflow file for this run

name: Check pull request
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Configure Node and package manager
uses: actions/setup-node@v4.0.2
env:
SKIP_YARN_COREPACK_CHECK: true
with:
node-version-file: 'package.json'
cache: 'yarn'
- name: Enable corepack
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Run linter
run: yarn lint
- name: Run tests
run: yarn test --maxWorkers=2
- name: Build code
run: yarn build