fix(logging): use correct error message for liveness #161
Workflow file for this run
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: Tests | |
on: | |
workflow_call: | |
inputs: | |
node_env: | |
required: true | |
type: string | |
pull_request: | |
branches: ['master'] | |
paths: | |
- '**.js*' | |
- '**.ts*' | |
- 'package*.json' | |
- '.github/workflows/tests.yml' | |
push: | |
branches: ['master'] | |
paths: | |
- '**.js*' | |
- '**.ts*' | |
- 'package*.json' | |
- '.github/workflows/tests.yml' | |
concurrency: | |
# Ensures that only one workflow task will run at a time. Previous builds, if | |
# already in process, will get cancelled. Only the latest commit will be allowed | |
# to run, cancelling any workflows in between | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
env: | |
NODE_ENV: ${{ inputs.node_env }} | |
NEXT_TELEMETRY_DISABLED: 1 | |
# we build a dev binary for use in CI so skip downloading | |
# canary next-swc binaries in the monorepo | |
NEXT_SKIP_NATIVE_POSTINSTALL: 1 | |
CI: true | |
jobs: | |
test: | |
name: Test with Node.js ${{ matrix.node }} | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ['lts/*', 'latest'] | |
steps: | |
- name: Checkout Code Repository | |
uses: actions/[email protected] | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Audit for vulnerabilities | |
run: npx audit-ci@^6 --config ./audit-ci.jsonc | |
- run: yarn install --check-files --frozen-lockfile | |
- run: yarn build |