From 241132e385bb302895dd13d935934b3e1559ffde Mon Sep 17 00:00:00 2001 From: Asif Saif Uddin Date: Thu, 18 May 2023 10:44:13 +0600 Subject: [PATCH] Update nodejs.yml CI versions --- .github/workflows/nodejs.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 96f67b3..ad09086 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -9,19 +9,19 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x, 14.x] + node-version: [14.x, 16.x, 18.x] steps: - - uses: actions/checkout@v1 - - uses: actions/setup-python@v1 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 with: - python-version: '2.x' + python-version: '3.x' architecture: 'x64' - name: Install virtualenv run: | pip install virtualenv - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: npm install, build, and test