chore: run dedup check on pr too

pull/3155/head
Audric Ackermann 8 months ago
parent 7676a38ac3
commit d282754866

@ -32,7 +32,11 @@ jobs:
- name: Checkout git repo
uses: actions/checkout@v3
- uses: ./actions/setup_and_build
- name: Setup & Build
uses: ./actions/setup_and_build
- name: Enforce yarn.lock has no duplicates
uses: ./actions/deduplicate_fail
- name: Build windows production binaries
if: runner.os == 'Windows'

@ -28,7 +28,8 @@ jobs:
- name: Checkout git repo
uses: actions/checkout@v3
- uses: ./actions/setup_and_build
- name: Setup & Build
uses: ./actions/setup_and_build
- name: Lint Files
# no need to lint files on all platforms. Just do it once on the quicker one
@ -36,10 +37,7 @@ jobs:
run: yarn lint-full
- name: Enforce yarn.lock has no duplicates
# no need to deduplicate yarn.lock on all platforms. Just do it once on the quicker one
if: runner.os == 'Linux'
run: yarn yarn-deduplicate yarn.lock --fail
uses: ./actions/deduplicate_fail
- name: Unit Test
run: yarn test

@ -22,7 +22,8 @@ jobs:
- name: Checkout git repo
uses: actions/checkout@v3
- uses: ./actions/setup_and_build
- name: Setup & Build
uses: ./actions/setup_and_build
- name: Build windows production binaries
if: runner.os == 'Windows'

@ -0,0 +1,9 @@
name: 'Deduplicate check'
description: 'Deduplicate check'
runs:
using: 'composite'
steps:
- name: Enforce yarn.lock has no duplicates
shell: bash
if: runner.os == 'Linux'
run: yarn yarn-deduplicate yarn.lock --fail

@ -6839,12 +6839,7 @@ semver@^6.0.0, semver@^6.2.0, semver@^6.3.0, semver@^6.3.1:
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
semver@^7.1.2, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.5.4:
version "7.6.2"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.2.tgz#1e3b34759f896e8f14d6134732ce798aeb0c6e13"
integrity sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==
semver@^7.5.0:
semver@^7.1.2, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.5.0, semver@^7.5.4:
version "7.6.3"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143"
integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==

Loading…
Cancel
Save