diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2024-07-30 16:08:15 +0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-30 16:08:15 +0600 |
commit | e4e393aa663268fad7b1634e48524c0d800bdac9 (patch) | |
tree | 212d1f37bbfb45bc86d19ead98f73571e541cfa7 /.github | |
parent | 7fc185c25b87e5059a15640cc2b23d829bf1871f (diff) | |
parent | 9395e3c03727a0a5902dccb49f49788bff9027d9 (diff) | |
download | rspamd-vstakhov-fuzzy-tcp.tar.gz rspamd-vstakhov-fuzzy-tcp.zip |
Merge branch 'master' into vstakhov-fuzzy-tcpvstakhov-fuzzy-tcp
Diffstat (limited to '.github')
-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 |