We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 29d8cbc + 72d7585 commit c00a02dCopy full SHA for c00a02d
.github/workflows/check.yml
@@ -0,0 +1,19 @@
1
+name: Check
2
+
3
+on:
4
+ push:
5
+ branches: ["main"]
6
+ pull_request:
7
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,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
set -euo pipefail
0 commit comments