From eb8b783def15dae4cc01dc6d496f2c3d73e78277 Mon Sep 17 00:00:00 2001 From: Hellyson Rodrigo Parteka Date: Tue, 16 Nov 2021 02:59:51 -0300 Subject: [PATCH] chore: update `Lint & build` action to use nodejs 16 This is the first time I'm working with actions... I hope this works --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9b0afbe..c4663dc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,6 +8,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 + - uses: actions/setup-node@v2 + with: + node-version: '16' - name: Cache dependencies uses: actions/cache@v1 with: