ci: revert sorting CI steps by length (no-changelog) (#4306)

 Revert "perf(ci): Sort CI steps by length (#4243)"

This reverts commit d47ff48fb6.
This commit is contained in:
Iván Ovejero 2022-10-10 19:50:26 +02:00 committed by GitHub
parent 6af3ba75dc
commit 13f52a2544
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 9 deletions

View file

@ -27,11 +27,11 @@ jobs:
- name: Install npm and dependencies
run: npm install -g npm@latest && npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run build --if-present
- name: Test
run: npm run test
- name: Lint
run: npm run lint

View file

@ -24,6 +24,12 @@ jobs:
- name: Install npm and dependencies
run: npm install -g npm@latest && npm install
- name: Build
run: npm run build --if-present
- name: Test
run: npm run test
- name: Fetch base branch for `git diff`
run: git fetch origin ${{ github.event.pull_request.base.ref }}:${{ github.event.pull_request.base.ref }}
@ -31,9 +37,3 @@ jobs:
env:
ESLINT_PLUGIN_DIFF_COMMIT: ${{ github.event.pull_request.base.ref }}
run: npm run lint
- name: Build
run: npm run build --if-present
- name: Test
run: npm run test