diff options
| author | Fuwn <[email protected]> | 2021-05-09 23:05:12 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-09 23:05:12 -0700 |
| commit | c9a928708abd2bb6281d7513a0acc8721a47f63a (patch) | |
| tree | b1945f6c8ce228a7a00c3bfacd3b59a59341d973 | |
| parent | fix(actions): run keyword when running npm scripts (diff) | |
| download | site-c9a928708abd2bb6281d7513a0acc8721a47f63a.tar.xz site-c9a928708abd2bb6281d7513a0acc8721a47f63a.zip | |
fix(check): install dependencies before running check job
| -rw-r--r-- | .github/workflows/check.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 01f9f0a..2cbc19e 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -21,5 +21,8 @@ jobs: with: node-version: ${{ matrix.node-version }} + - name: Install Dependencies 🔮 + run: npm install + - name: Check 🙋♀️ run: npm run build |