tangled
alpha
login
or
join now
danabra.mov
/
rscexplorer
37
fork
atom
A tool for people curious about the React Server Components protocol
rscexplorer.dev/
rsc
react
37
fork
atom
overview
issues
pulls
pipelines
maybe add ci
danabra.mov
3 months ago
d7f4ce64
fc7e4e64
0/1
ci.yaml
failed
17s
+36
2 changed files
expand all
collapse all
unified
split
.github
workflows
ci.yml
.tangled
workflows
ci.yaml
+20
.github/workflows/ci.yml
···
1
1
+
name: CI
2
2
+
3
3
+
on:
4
4
+
push:
5
5
+
branches: [main]
6
6
+
pull_request:
7
7
+
branches: [main]
8
8
+
9
9
+
jobs:
10
10
+
test:
11
11
+
runs-on: ubuntu-latest
12
12
+
steps:
13
13
+
- uses: actions/checkout@v4
14
14
+
- uses: actions/setup-node@v4
15
15
+
with:
16
16
+
node-version: 22
17
17
+
cache: npm
18
18
+
- run: npm install
19
19
+
- run: npm test
20
20
+
- run: npm run build:versions
+16
.tangled/workflows/ci.yaml
···
1
1
+
engine: nixery
2
2
+
when:
3
3
+
- event: ["push", "pull_request"]
4
4
+
branch: ["main"]
5
5
+
6
6
+
dependencies:
7
7
+
nixpkgs:
8
8
+
- nodejs
9
9
+
10
10
+
steps:
11
11
+
- name: install
12
12
+
command: npm install
13
13
+
- name: test
14
14
+
command: npm test
15
15
+
- name: build versions
16
16
+
command: npm run build:versions