diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 5e22a55d..fd52a26a 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -20,6 +20,11 @@ jobs: with: fetch-depth: 0 # Fetch all branches + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: '14' + - name: Install modules run: npm install --no-audit diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ead6b4e6..d4e24a75 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,6 +21,11 @@ jobs: - name: Check out repository uses: actions/checkout@v2 + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: '14' + - name: Install modules run: npm install --no-audit