Skip to content

Commit

Permalink
Move fetching docs after linting
Browse files Browse the repository at this point in the history
  • Loading branch information
damianstasik committed Sep 20, 2023
1 parent a7dd306 commit af8c201
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Fetch docs
run: make
- name: Setup Node
uses: actions/setup-node@v3
with:
Expand All @@ -25,6 +23,8 @@ jobs:
run: npm ci
- name: Lint code
run: npm run lint
- name: Fetch docs
run: make
- name: Build website
run: npm run build
- name: Publish to Cloudflare Pages
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Fetch docs
run: make
- name: Setup Node
uses: actions/setup-node@v3
with:
Expand All @@ -35,6 +33,8 @@ jobs:
run: npm ci
- name: Lint code
run: npm run lint
- name: Fetch docs
run: make
- name: Build website
run: npm run build
- name: Setup Pages
Expand Down

0 comments on commit af8c201

Please sign in to comment.