Skip to content

Commit 0d3deed

Browse files
committed
Drop the dist/ verification from the main CI build
... and rename it to `ci`. The verification is no longer needed because the idea is to build and commit this directory _only_ in the workflow that publishes `main` to the `v0` release branch. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 3281df3 commit 0d3deed

File tree

2 files changed

+18
-27
lines changed

2 files changed

+18
-27
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run the tests
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
name: Build
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v5
15+
- run: npm ci
16+
- run: npm run lint
17+
- run: npm run test
18+
- run: npm run prepare

.github/workflows/verify-dist.yml

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

0 commit comments

Comments
 (0)