From 348471bf009acad7fe892b2f598aac25c708ebb3 Mon Sep 17 00:00:00 2001 From: Peter Kerpedjiev Date: Fri, 20 Dec 2024 21:23:18 -0800 Subject: [PATCH] Bump node-version in github actions --- .github/workflows/nodejs.yml | 2 +- .github/workflows/npmpublish.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 44cc6ec..5eb914a 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: - node-version: [16.x] + node-version: [18.x] steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index 828cfeb..6f352d2 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -6,7 +6,7 @@ name: Node.js Package on: push: tags: - - "v*" + - 'v*' jobs: build: @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - run: sudo apt-get install xvfb - run: npm ci - run: npm run build --if-present @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 registry-url: https://registry.npmjs.org/ - run: npm ci - run: npm run prerelease