A tool for people curious about the React Server Components protocol
rscexplorer.dev/
rsc
react
1name: CI
2
3on:
4 push:
5 branches: [main]
6 pull_request:
7 branches: [main]
8
9jobs:
10 test:
11 runs-on: ubuntu-latest
12 steps:
13 - uses: actions/checkout@v4
14 - uses: actions/setup-node@v4
15 with:
16 node-version: 22
17 cache: npm
18 - run: npm install
19 - run: npm run lint
20 - run: npm run format:check
21 - run: npx playwright install --with-deps chromium
22 - run: npm test
23 - run: npm run build:versions