Skip to content

Refactor CI test runs to run against the code built and packaged instead of source #11

Refactor CI test runs to run against the code built and packaged instead of source

Refactor CI test runs to run against the code built and packaged instead of source #11

Workflow file for this run

name: CI - ___
on:
pull_request:
branches: [master]
jobs:
lint_check____________:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- uses: ./.github/actions/ci-common-setup
- name: Lint check
run: pnpm exec eslint --cache
prettier_check____________:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- uses: ./.github/actions/ci-common-setup
- name: Prettier check
run: pnpm exec prettier --check "./{src,spec}/**/*.{ts,tsx,js,mjs,jsx}"