From d32d43846d684cd8cd9fef35df3d91058ac5e25d Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Wed, 28 Feb 2024 08:06:48 -0800 Subject: [PATCH] ci: publish requires node v20 --- .github/workflows/publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a09a62c..311399f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,6 +11,7 @@ on: env: CI: true + node-version: 20 jobs: build: @@ -19,6 +20,8 @@ jobs: - run: sudo /etc/init.d/mysql start - uses: actions/checkout@v4 - uses: actions/setup-node@v4 + with: + node-version: ${{ env.node-version }} - run: sh sql/init-mysql.sh - run: npm install - run: npm test