Update node.js.yml

This commit is contained in:
Holly Stubbs 2023-09-10 13:16:43 +01:00 committed by GitHub
parent 726e490fe2
commit ba91cb6cdb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 # 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://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI name: Node.js CI
on: on:
push: push:
branches: [ master ] branches: [ "typescript" ]
pull_request: pull_request:
branches: [ master ] branches: [ "typescript" ]
jobs: jobs:
build: build:
@ -16,14 +16,18 @@ jobs:
strategy: strategy:
matrix: matrix:
node-version: [10.x] node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1 uses: actions/setup-node@v3
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- run: npm install cache: 'npm'
- run: npm ci - 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