We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9338696 commit 280c126Copy full SHA for 280c126
β.github/workflows/pa11y.ymlβ
@@ -18,13 +18,18 @@ jobs:
18
- uses: actions/setup-node@v1
19
with:
20
node-version: 18
21
- - run: npm install -g yarn
22
- - run: yarn install --frozen-lockfile
23
- - run: yarn build
24
25
- - name: Boot Next
26
27
- - run: yarn start
+ - name: Install Yarn
+ run: npm install -g yarn
+
+ - name: Install Dependencies
+ run: yarn install --frozen-lockfile
28
+ - name: Build Next App
29
+ run: yarn build
30
31
+ - name: Boot Next App
32
+ run: yarn start
33
34
- name: Run pa11y-ci
35
run: yarn pa11y-ci:sitemap 2>&1 | tee pa11y_output.txt
0 commit comments