We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
deduplicate-yarn
1 parent 7491d64 commit 9f59a13Copy full SHA for 9f59a13
.github/workflows/deduplicate-yarn.yml
@@ -5,14 +5,17 @@ on:
5
branches:
6
- main
7
paths:
8
- - ./yarn.lock
+ - yarn.lock
9
10
concurrency:
11
group: ${{ github.workflow }}-${{ github.ref }}
12
cancel-in-progress: true
13
14
+permissions:
15
+ contents: write
16
+
17
jobs:
- format:
18
+ deduplicate:
19
if: github.repository == 'remix-run/examples'
20
runs-on: ubuntu-latest
21
@@ -26,7 +29,7 @@ jobs:
26
29
node-version-file: ".nvmrc"
27
30
cache: "yarn"
28
31
- - name: ⚙️ Dedupe yarn.lock
32
+ - name: ⚙️ Deduplicate yarn.lock
33
run: npx yarn-deduplicate && rm -rf ./node_modules && yarn
34
35
- name: 💪 Commit
0 commit comments