From 8abef9d45848baf9f51b5fbc239792f635c6a19a Mon Sep 17 00:00:00 2001 From: Jay Wang Date: Tue, 3 Oct 2023 03:43:21 -0400 Subject: [PATCH] Update node version Signed-off-by: Jay Wang --- .github/workflows/build.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1110ff7..e8bf5a7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,25 +3,25 @@ name: build on: # Triggers the workflow on push or pull request events but only for the master branch push: - branches: [ master ] + branches: [master] pull_request: - branches: [ master ] + branches: [master] jobs: build: runs-on: ubuntu-latest - + strategy: matrix: - node-version: [10.x, 12.x, 14.x, 15.x] + node-version: [14.x, 15.x] steps: - - uses: actions/checkout@v2 - - name: Use Node.js - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - name: Install dependencies - run: npm install - - name: Build - run: npm run build + - uses: actions/checkout@v2 + - name: Use Node.js + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - name: Install dependencies + run: npm install + - name: Build + run: npm run build