Skip to content

Commit

Permalink
Create lint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lovegaoshi committed Nov 27, 2024
1 parent 10f773c commit 504f836
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: APM Lint
on:
pull_request:
branches:
- master
workflow_dispatch:

jobs:
jest:
runs-on: ubuntu-latest
name: APM tests

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Yarn
uses: threeal/[email protected]

- name: Install dependencies
run: yarn install; yarn postinstall

- name: lint & prettier
run: |
yarn ci:lint
yarn ci:format

0 comments on commit 504f836

Please sign in to comment.