diff options
author | 2021-04-19 22:11:02 +0100 | |
---|---|---|
committer | 2021-04-19 22:11:02 +0100 | |
commit | fe63d341cb707c0669a71434f02176054bcdbf5e (patch) | |
tree | c97d97e8624ce64fb15b445a160e3d5191f00711 | |
parent | f6f01a7d7b01736dbbf921bc1ec12ed3c8412630 (diff) | |
download | astro-fe63d341cb707c0669a71434f02176054bcdbf5e.tar.gz astro-fe63d341cb707c0669a71434f02176054bcdbf5e.tar.zst astro-fe63d341cb707c0669a71434f02176054bcdbf5e.zip |
action: add kitchen-sink to nodejs workflow (#113)
-rw-r--r-- | .github/workflows/nodejs.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 9890f393d..0ae394b46 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -24,6 +24,11 @@ jobs: npm ci npm run build + + cd examples/kitchen-sink + npm ci + npm run build + cd ../.. npm test env: CI: true |