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:
parent
6e96ce5b52
commit
cb7d8cfa26
2 changed files with 14 additions and 15 deletions
2
.github/pull_request_template.md
vendored
2
.github/pull_request_template.md
vendored
|
@ -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>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# 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:
|
||||||
|
@ -11,12 +11,11 @@ on:
|
||||||
|
|
||||||
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
|
Loading…
Reference in a new issue