Skip to content

Run node.js checks only for our current version #1418

Run node.js checks only for our current version

Run node.js checks only for our current version #1418

Workflow file for this run

# 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
name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Use Node.js 15
uses: actions/[email protected]
with:
node-version: 15
- run: npm ci
- run: npm run build --if-present
- run: npm run lint
- run: npm run test:unit
- run: npm run test:e2e