You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: Set up npm ${{ steps.versions.outputs.npmVersion }}
41
+
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"
42
+
43
+
- name: Install dependencies & build
44
+
run: |
45
+
npm ci
46
+
npm run build --if-present
47
+
48
+
- name: Check webpack build changes
49
+
run: |
50
+
bash -c "[[ ! \"`git status --porcelain `\" ]] || (echo 'Please recompile and commit the assets, see the section \"Show changes on failure\" for details' && exit 1)"
0 commit comments