-
Notifications
You must be signed in to change notification settings - Fork 1
113 lines (109 loc) · 3.18 KB
/
test.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: Test
on:
pull_request:
push:
branches: ["main"]
jobs:
rails:
name: Rails
runs-on: ubuntu-latest
services:
postgres:
image: postgres:17.2
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
env:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/manage_vaccinations_test
RAILS_ENV: test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .tool-versions
cache: yarn
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Setup database
run: bin/rails db:test:prepare
- name: Precompile assets
run: bin/rails assets:precompile
- name: Run rspec
run: bundle exec rspec spec
jest:
name: Jest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .tool-versions
cache: yarn
- run: yarn install --immutable --immutable-cache --check-cache
- run: yarn test
playwright:
timeout-minutes: 60
name: Playwright
runs-on: ubuntu-latest
services:
postgres:
image: postgres:17.2
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
env:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/manage_vaccinations_test
RAILS_ENV: test
MAVIS__CIS2__ENABLED: false
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: .tool-versions
bundler-cache: true
- name: Get Node.js version
id: mise
run: echo "::set-output name=VERSION::$(grep nodejs .tool-versions | awk '{print $2}')"
- uses: actions/setup-node@v4
with:
node-version: ${{ steps.mise.outputs.VERSION }}
cache: "yarn"
- run: bundle
- run: yarn install --frozen-lockfile
- run: bin/rails db:prepare
- name: Get installed Playwright version
id: playwright-version
run: echo "PLAYWRIGHT_VERSION=$(yarn list --pattern '@playwright/test' --depth 0 -s | cut -d @ -f 3)" >> $GITHUB_ENV
- name: Cache playwright binaries
uses: actions/cache@v4
id: playwright-cache
with:
path: |
~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
- name: Install Playwright Browsers
run: yarn playwright install --with-deps
if: steps.playwright-cache.outputs.cache-hit != 'true'
- name: Precompile assets
run: bin/rails assets:precompile
- name: Run Playwright tests
run: yarn test:e2e
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright?report
retention-days: 10