From ba91cb6cdbf606892b127da819b6a81280d30c86 Mon Sep 17 00:00:00 2001 From: Holly Date: Sun, 10 Sep 2023 13:16:43 +0100 Subject: [PATCH] Update node.js.yml --- .github/workflows/node.js.yml | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 8344bfa..0928eff 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -1,13 +1,13 @@ -# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions +# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs name: Node.js CI on: push: - branches: [ master ] + branches: [ "typescript" ] pull_request: - branches: [ master ] + branches: [ "typescript" ] jobs: build: @@ -16,14 +16,18 @@ jobs: strategy: matrix: - node-version: [10.x] + node-version: [18.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - run: npm install + cache: 'npm' - run: npm ci - - run: npm run build --if-present + # Don't run updateCheck for now + #- run: npm run dev:updateCheck + - run: npm run build + #- run: npm test