Skip to content

Commit 410c571

Browse files
author
Tony Lea
committed
Adding node to the test runner and installing deps
1 parent 880589b commit 410c571

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/tests.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,18 @@ jobs:
2525
tools: composer:v2
2626
coverage: xdebug
2727

28+
- name: Setup Node.js
29+
uses: actions/setup-node@v3
30+
with:
31+
node-version: '18'
32+
cache: 'npm'
33+
34+
- name: Install Node dependencies
35+
run: npm ci
36+
37+
- name: Build assets
38+
run: npm run build
39+
2840
- name: Create SQLite Database
2941
run: touch database/database.sqlite
3042

0 commit comments

Comments
 (0)