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