Bump eslint from 8.53.0 to 8.55.0 #112
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
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
merge_group: | |
types: [checks_requested] | |
# cancel previous runs on the same PR | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
name: ⛷ PR tests | |
env: | |
CI: true | |
TARGET_SHA: ${{ github.event.pull_request.head.sha || github.event.merge_group.head_sha }} | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build-format-lint-test: | |
name: 🚀 Build, lint and test | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: '📥️ Checkout' | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ env.TARGET_SHA }} | |
- name: '⚙️📦️ Install & cache node dependencies' | |
uses: ./.github/actions/install-node-deps | |
- name: '⚙️🔨 Build packages' | |
run: pnpm run package | |
- name: '⚙️🔧 Build constructs' | |
run: pnpm run build | |
- name: '🧪🖼️ Test linter' | |
run: pnpm run test-linter | |
- name: '🧪🗃️ Test types' | |
run: pnpm run test-type | |
- name: '🧪🔬 Run unit tests' | |
run: pnpm run test-unit |