-
-
Notifications
You must be signed in to change notification settings - Fork 9
44 lines (40 loc) · 887 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: CI
on:
pull_request:
push:
branches:
- "main"
env:
CI: true
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
permissions:
id-token: write
contents: read
jobs:
check:
name: Check
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
node_version:
- 18
- 20
cmd:
- build
- test
- format
- synth
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::738697399292:role/GitHubOIDCReadOnlyRole
aws-region: us-west-2
- run: bun install
- run: bun run ${{ matrix.cmd }}