Skip to content

Commit

Permalink
Reorder workflow
Browse files Browse the repository at this point in the history
Make external dependencies more explicit on top

Co-authored-by: Nicolas Dupont <nicolas.dupont@beta.gouv.fr>
  • Loading branch information
MattiSG and Ndpnt committed May 21, 2024
1 parent 34f785a commit c010297
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,6 @@ on:
workflow_call:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 20

- name: Lint Markdown files
run: make lint

build:
uses: ./.github/workflows/build.yaml

Expand All @@ -44,3 +31,16 @@ jobs:

- name: Check for internal dead links
run: wget --retry-connrefused --waitretry=1 --spider --recursive --page-requisites http://localhost:8000

lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 20

- name: Lint Markdown files
run: make lint

0 comments on commit c010297

Please sign in to comment.