-
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (32 loc) · 917 Bytes
/
e2e.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
name: E2E tests
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}
jobs:
e2e:
name: E2E tests
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install dependencies
run: yarn --immutable
- name: Configure AWS Credentials
uses: aws-actions/[email protected]
with:
role-to-assume: arn:aws:iam::296062585054:role/github-actions-e2e
aws-region: eu-west-1
- name: Run e2e tests
run: yarn turbo run test:e2e --output-logs=new-only --color --env-mode=loose
env:
AWS_REGION: eu-west-1