-
Notifications
You must be signed in to change notification settings - Fork 0
132 lines (108 loc) · 3.64 KB
/
validate.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
name: Validate
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}-validate"
cancel-in-progress: true
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
changes:
name: Check changed files
runs-on: ubuntu-latest
outputs:
src: ${{ steps.filter.outputs.src }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
src:
- '!(content|public)/**'
validate:
name: Validate
needs: [changes]
if: ${{ needs.changes.outputs.src == 'true' }}
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
fail-fast: true
matrix:
node-version: [22.x]
os: [ubuntu-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Necessary because `actions/setup-node` does not yet support `corepack`.
# @see https://github.com/actions/setup-node/issues/531
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Cache astro build artefacts
uses: actions/cache@v4
with:
path: node_modules/.astro/
key: ${{ runner.os }}-astro-${{ matrix.node-version }}-${{ github.run_id }}
restore-keys: ${{ runner.os }}-astro-${{ matrix.node-version }}
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Format
run: pnpm run format:check
# - name: Lint
# run: pnpm run lint:check
- name: Typecheck
run: pnpm run types:check
- name: Test
run: pnpm run test
# - name: Get playwright version
# run: |
# PLAYWRIGHT_VERSION=$(pnpm ls @playwright/test --json | jq --raw-output '.[0].devDependencies["@playwright/test"].version')
# echo "PLAYWRIGHT_VERSION=$PLAYWRIGHT_VERSION" >> $GITHUB_ENV
# - name: Cache playwright browsers
# uses: actions/cache@v4
# id: cache-playwright-browsers
# with:
# path: "~/.cache/ms-playwright"
# key: "${{ matrix.os }}-playwright-browsers-${{ env.PLAYWRIGHT_VERSION }}"
# - name: Install playwright browsers
# if: steps.cache-playwright-browsers.outputs.cache-hit != 'true'
# run: pnpm exec playwright install --with-deps
# - name: Install playwright browsers (operating system dependencies)
# if: steps.cache-playwright-browsers.outputs.cache-hit == 'true'
# run: pnpm exec playwright install-deps
# - name: Build app
# run: pnpm run build
# env:
# PUBLIC_APP_BASE_URL: "http://localhost:3000"
# PUBLIC_REDMINE_ID: "${{ vars.SERVICE_ID }}"
# - name: Run e2e tests
# run: pnpm run test:e2e
# env:
# PUBLIC_APP_BASE_URL: "http://localhost:3000"
# - uses: actions/upload-artifact@v4
# if: always()
# with:
# name: playwright-report
# path: playwright-report/
# retention-days: 30
build-deploy:
name: Build and deploy
needs: [validate]
# @see https://github.com/orgs/community/discussions/45058
if: ${{ github.event_name == 'push' && !failure() && !cancelled() }}
uses: ./.github/workflows/build-deploy.yml
secrets: inherit
# https://docs.github.com/en/actions/using-workflows/reusing-workflows#access-and-permissions
permissions:
contents: read
packages: write