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 04ac3ae commit 8474d79Copy full SHA for 8474d79
1 file changed
.github/workflows/run-tests.yml
@@ -43,6 +43,7 @@ jobs:
43
- name: Execute tests
44
run: composer test
45
46
+ # NPM part (test whether assets can be compiled)
47
npm:
48
runs-on: ubuntu-latest
49
@@ -57,9 +58,10 @@ jobs:
57
58
59
- name: Cache yarn dependencies
60
uses: actions/cache@v4
- id: yarn-node_modules-cache
61
+ id: npm-node_modules-cache
62
with:
63
path: node_modules
- key: yarn-${{ hashFiles('packages.json') }}-node-20
64
+ key: npm-${{ hashFiles('package.json') }}-node-20
65
- - run: yarn && yarn dev
66
+ - name: Compile assets
67
+ run: npm install && npm run prod
0 commit comments