-
Notifications
You must be signed in to change notification settings - Fork 2
53 lines (40 loc) · 1000 Bytes
/
test.yml
File metadata and controls
53 lines (40 loc) · 1000 Bytes
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
45
46
47
48
49
50
51
52
53
name: Test
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0' # Runs every Sunday at midnight
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install mise
uses: jdx/mise-action@v4
- name: Install tools
run: mise install
- name: Install Ruby gems
run: bundle install
- name: Setup TFLint
uses: terraform-linters/setup-tflint@v6
with:
tflint_version: v0.50.3
- name: Run linters
run: mise lint
- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v7
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30