Skip to content

Commit 64b8d3a

Browse files
ci: run the plugin suite on every push (nothing but a human ran it until now)
1 parent 5bcb17a commit 64b8d3a

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: ci
2+
on:
3+
push: { branches: [gh-pages] }
4+
pull_request:
5+
workflow_dispatch:
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-node@v4
12+
with: { node-version: '22' }
13+
- run: npm install
14+
- run: npm test

0 commit comments

Comments
 (0)