Skip to content

Configure ISSUE_CERTIFIED_COPY custom action #2987

Configure ISSUE_CERTIFIED_COPY custom action

Configure ISSUE_CERTIFIED_COPY custom action #2987

Workflow file for this run

name: Compile, lint and test
on: [pull_request]
jobs:
test:
runs-on: ubuntu-24.04
steps:
- name: Checking out git repo
uses: actions/checkout@v4
- name: Use Node.js from .nvmrc
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'yarn'
- name: Runs dependency installation
run: yarn
- name: Compile
run: yarn test:compilation
- name: Test
run: yarn test
- name: Bash script linting
uses: ludeeus/action-shellcheck@master
continue-on-error: true
with:
severity: error
ignore_paths: |
node_modules/**/*
env:
SHELLCHECK_OPTS: -e SC2086 -e SC2068