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.
1 parent ce45b71 commit 67c95e8Copy full SHA for 67c95e8
.github/workflows/bundlewatch.yml
@@ -27,9 +27,21 @@ jobs:
27
env:
28
CI_BRANCH_BASE: main
29
steps:
30
- - uses: actions/checkout@v2
31
- - uses: jackyef/bundlewatch-gh-action@b9753bc9b3ea458ff21069eaf6206e01e046f0b5
+ - name: Checkout
+ uses: actions/checkout@v3
32
+
33
+ - name: Setup Node
34
+ uses: actions/setup-node@v3
35
+ with:
36
+ node-version: 20
37
+ cache: npm
38
39
+ - name: Install Dependencies
40
+ run: npm ci
41
42
+ - name: Bundlewatch
43
+ uses: jackyef/bundlewatch-gh-action@b9753bc9b3ea458ff21069eaf6206e01e046f0b5
44
with:
- build-script: npm i
45
+ build-script: npm run prepack
46
bundlewatch-github-token: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}
47
bundlewatch-config: .github/bundlewatch.config.json
0 commit comments