devops: update build and test pipeline (#33)

* devops: remove test run on node 14
* fix: main branch tests
* chore: update pull request template
* devops: update unit test CI
* devops: fix unit test pipeline
* devops: rename pipeline to "build and test"
This commit is contained in:
Ayo Ayco 2022-10-04 16:38:58 +02:00 committed by GitHub
parent 6e96ce5b52
commit cb7d8cfa26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 15 deletions

View file

@ -4,7 +4,7 @@ What is this PR about?
- [ ] feature - [ ] feature
Description of changes: Description of changes:
<-- <!--
Mention the issue this PR is addressing Mention the issue this PR is addressing
Describe the changes you made preferrably broken down into a list in the following format: Describe the changes you made preferrably broken down into a list in the following format:
1. <filename> - <update done> 1. <filename> - <update done>

View file

@ -1,22 +1,21 @@
# 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 # 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://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI name: Build and Test
on: on:
push: push:
branches: [ "main" ] branches: ["main"]
pull_request: pull_request:
branches: [ "main" ] branches: ["main"]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
node-version: [14.x, 16.x, 18.x] node-version: [16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps: steps:
@ -25,7 +24,7 @@ jobs:
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
cache: 'npm' cache: "npm"
- run: npm ci - run: npm ci
- run: npm run build --if-present - run: npm run build -w demo --if-present
- run: npm test - run: npm test