Skip to content

Commit 88c06cc

Browse files
author
Daniel Del Core
committed
update actions to build before anything else
1 parent 8255eb2 commit 88c06cc

File tree

4 files changed

+4
-26
lines changed

4 files changed

+4
-26
lines changed

.github/workflows/documentation.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- name: Generate docs
1919
run: |
2020
yarn install --frozen-lockfile
21+
yarn build
2122
yarn predocs:start
2223
- name: Test Build
2324
run: |
@@ -38,6 +39,7 @@ jobs:
3839
- name: Generate docs
3940
run: |
4041
yarn install --frozen-lockfile
42+
yarn build
4143
yarn predocs:start
4244
- name: Release to GitHub Pages
4345
env:

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
with:
2222
node-version: ${{ matrix.node-version }}
2323
- run: yarn install --frozen-lockfile
24+
- run: yarn build
2425
- run: yarn test
2526
env:
2627
CI: true

.github/workflows/validate-codmods.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/validate.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
node-version: ${{ matrix.node-version }}
2323
- run: npm install -g yarn
2424
- run: yarn install --frozen-lockfile
25+
- run: yarn build
2526
- run: yarn validate
2627
env:
2728
CI: true

0 commit comments

Comments
 (0)