Skip to content

Code Refactoring: Curate More Unused Declarations #871

Code Refactoring: Curate More Unused Declarations

Code Refactoring: Curate More Unused Declarations #871

Workflow file for this run

name: Check Formatting
on:
pull_request:
types:
- opened
- reopened
- edited
- synchronize
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-22.04]
node: [18]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install -g npm
- run: npm install prettier pretty-quick
- run: npm run prettier:check
aggregate:
name: format:required
if: ${{ always() }}
needs: [test]
runs-on: ubuntu-latest
steps:
- name: check e2e test result
if: ${{ needs.test.result != 'success' }}
run: exit 1