Skip to content

jenkins: updating the pipeline #21

jenkins: updating the pipeline

jenkins: updating the pipeline #21

Workflow file for this run

name: CI_DEV
on:
workflow_dispatch:
push:
branches-ignore:
- master
- main
- release
- release-*
- v*
pull_request:
branches:
- main
- master
- dev
- dev-*
- feature-*
jobs:
lint-format-test:
runs-on: ubuntu-latest
environment: build
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20.11.0"
- name: Install dependencies
run: npm install
shell: bash
- name: Testing and linting
uses: ./.github/actions/tests
with:
silent_test: false
fix_lint: false