diff options
Diffstat (limited to '.github/workflows/ci_eslint.yml')
-rw-r--r-- | .github/workflows/ci_eslint.yml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/ci_eslint.yml b/.github/workflows/ci_eslint.yml index e7220d468..a4fe0fc31 100644 --- a/.github/workflows/ci_eslint.yml +++ b/.github/workflows/ci_eslint.yml @@ -6,14 +6,16 @@ on: jobs: eslint: runs-on: ubuntu-latest - container: - image: node:18-alpine steps: - name: Check out source code uses: actions/checkout@v4 - - name: Install dependencies - run: npm install + - uses: actions/setup-node@v4 + with: + node-version: 20 + + - name: Install packages + run: npm ci - name: Show installed packages run: npm ls |