From 37f1a43dba5c1cf98990b9a30b582a47e3dd4078 Mon Sep 17 00:00:00 2001 From: Lior Rabin Date: Mon, 19 Jun 2023 09:40:35 +0300 Subject: [PATCH] Upgrade GitHub action to node v16 (#100) * upgrade github action to node v16 * upgrade github action to node v16 --- .github/workflows/npmpublish.yml | 4 ++-- .github/workflows/pull_request.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index b9979574..096ad64b 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 12 + node-version: 16 #- run: npm ci #- run: npm tests @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 12 + node-version: 16 registry-url: https://registry.npmjs.org/ - run: npm ci - run: npm publish diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 09b1bf18..355da117 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -9,7 +9,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: "12.x" + node-version: "16.x" - run: npm install - run: npm run compile-types - run: npm run test