Skip to content

Commit 319ce10

Browse files
authored
Merge pull request #27 from InteractionDesignFoundation/update-dependencies
Test assets building on CI
2 parents 6e45863 + ab51282 commit 319ce10

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/run-tests.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,24 @@ jobs:
4343

4444
- name: Execute tests
4545
run: composer test
46+
47+
npm:
48+
runs-on: ubuntu-latest
49+
50+
steps:
51+
- name: Checkout code
52+
uses: actions/checkout@v4
53+
54+
- name: Setup Node.js
55+
uses: actions/setup-node@v4
56+
with:
57+
node-version: 20
58+
59+
- name: Cache yarn dependencies
60+
uses: actions/cache@v4
61+
id: yarn-node_modules-cache
62+
with:
63+
path: node_modules
64+
key: yarn-${{ hashFiles('packages.json') }}-node-20
65+
66+
- run: yarn && yarn dev

0 commit comments

Comments
 (0)