We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1b2bcf commit c20f2a0Copy full SHA for c20f2a0
.github/workflows/javascript-suites.yml
@@ -0,0 +1,26 @@
1
+name: JavaScript Suites
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - name: Set up Node
18
+ uses: actions/setup-node@v4
19
+ with:
20
+ node-version: "lts/Hydrogen"
21
+ - name: Run JSON RFC Tests
22
+ run: |
23
+ node ports-js/json-rfc.js
24
+ - name: Run URL Tests
25
26
+ node ports-js/url-parsing.js
0 commit comments