Skip to content

Commit c00a02d

Browse files
Merge pull request #18 from BenoitZugmeyer/setup-ci
ci: add github action
2 parents 29d8cbc + 72d7585 commit c00a02d

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/workflows/check.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Check
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
branches: ["main"]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: "22.x"
17+
cache: "npm"
18+
- run: npm ci
19+
- run: npm run check

tools/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22

33
set -euo pipefail
44

0 commit comments

Comments
 (0)