Skip to content

Commit 2e3b176

Browse files
committed
Merge lint and test workflows
1 parent ec02e8a commit 2e3b176

File tree

2 files changed

+11
-24
lines changed

2 files changed

+11
-24
lines changed

.github/workflows/lint.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,18 @@ on:
66
pull_request:
77
workflow_dispatch:
88
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
919
test:
10-
name: Test
20+
name: Build and test
1121
runs-on: ubuntu-latest
1222
strategy:
1323
matrix:

0 commit comments

Comments
 (0)