Skip to content

Commit 280c126

Browse files
πŸ› fix(github/workflows): fix pa11y setup
1 parent 9338696 commit 280c126

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

β€Ž.github/workflows/pa11y.ymlβ€Ž

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,18 @@ jobs:
1818
- uses: actions/setup-node@v1
1919
with:
2020
node-version: 18
21-
- run: npm install -g yarn
22-
- run: yarn install --frozen-lockfile
23-
- run: yarn build
2421

25-
- name: Boot Next
26-
- run: yarn build
27-
- run: yarn start
22+
- name: Install Yarn
23+
run: npm install -g yarn
24+
25+
- name: Install Dependencies
26+
run: yarn install --frozen-lockfile
27+
28+
- name: Build Next App
29+
run: yarn build
30+
31+
- name: Boot Next App
32+
run: yarn start
2833

2934
- name: Run pa11y-ci
3035
run: yarn pa11y-ci:sitemap 2>&1 | tee pa11y_output.txt

0 commit comments

Comments
Β (0)