Move dedupe check up to fail faster

This commit is contained in:
Steve Repsher 2023-02-06 21:16:38 +00:00
parent 7c1b2e01fe
commit bb6fb5fb89
No known key found for this signature in database
GPG Key ID: 776C4F2DACF6131B

View File

@ -33,6 +33,8 @@ jobs:
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Check for duplicate dependencies
run: yarn dedupe --check
- name: Build resources
run: ./node_modules/.bin/gulp gen-icons-json build-translations build-locale-data gather-gallery-pages
- name: Run eslint
@ -41,8 +43,6 @@ jobs:
run: yarn run lint:types
- name: Run prettier
run: yarn run lint:prettier
- name: Check for duplicate dependencies
run: yarn dedupe --check
test:
name: Run tests
runs-on: ubuntu-latest