From ba86a7d698e3224fe9eaa9af93e8b53b39f736ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20Bol=C3=ADvar?= Date: Tue, 26 Mar 2024 17:04:08 +0100 Subject: [PATCH] Update lint CI workflow --- .github/workflows/lint.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e66e934..fca0509 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,7 +14,7 @@ jobs: lint-report: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.0.0 + - uses: actions/checkout@v4 with: fetch-depth: 1 @@ -23,6 +23,10 @@ jobs: ruby-version: ${{ env.RUBY_VERSION }} bundler-cache: true + - uses: actions/setup-node@master + with: + node-version: ${{ env.NODE_VERSION }} + - run: npm ci name: Install JS deps