diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-11-18 17:13:03 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-11-18 17:13:03 +0100 |
commit | 9fcc9a8d716254565d06082bc6e861b259c132fd (patch) | |
tree | c16eb7d29979995c2e74a364d9635b1f11e74480 /.github | |
parent | b749a9fb9b3b4c3780c7ff633b963892257a44b3 (diff) |
cd: set node to 16 to not mess up package-lock
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cd.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 9627f66..aa7a220 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -34,6 +34,10 @@ jobs: uses: 'actions/checkout@v2' with: repository: '${{ github.repository }}' + - name: '[setup node]' + uses: 'actions/setup-node@v2' + with: + node-version: '16' - name: '[lint]' run: | echo TBA some linting |