We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1550ae commit 1e6d9a0Copy full SHA for 1e6d9a0
.github/workflows/lint.yaml
@@ -0,0 +1,18 @@
1
+name: Lint
2
+on: [workflow_call]
3
+env:
4
+ DOCKER: false
5
+jobs:
6
+ lint:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - uses: extractions/setup-just@v2
11
+ - uses: actions/setup-node@v4
12
+ with:
13
+ node-version: '20'
14
+ cache: 'npm'
15
+ cache-dependency-path: '**/package-lock.json'
16
+ - run: just vscode deps
17
+ - run: just vscode lint
18
+ - run: just vscode check-format
.github/workflows/pull-request.yaml
@@ -6,6 +6,10 @@ concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
jobs:
+ # Linting and formatting
+ uses: ./.github/workflows/lint.yaml
+
# Unit Tests
agent:
uses: ./.github/workflows/agent.yaml
0 commit comments