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 ec02e8a commit 2e3b176Copy full SHA for 2e3b176
.github/workflows/lint.yml
.github/workflows/test.yml
@@ -6,8 +6,18 @@ on:
6
pull_request:
7
workflow_dispatch:
8
jobs:
9
+ lint:
10
+ name: Check formatting
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: actions/setup-node@v4
15
+ - name: Install dependencies
16
+ run: npm ci --no-audit
17
+ - name: Lint
18
+ run: npm run lint
19
test:
- name: Test
20
+ name: Build and test
21
runs-on: ubuntu-latest
22
strategy:
23
matrix:
0 commit comments