Skip to content

Add release github action to auto bump versions #52

Add release github action to auto bump versions

Add release github action to auto bump versions #52

Workflow file for this run

name: Frontend unit tests
on:
workflow_dispatch:
push:
branches:
- 'develop'
- 'master'
- 'feature/**'
- 'bugfix/**'
- 'hotfix/**'
- 'release/**'
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Test Angular
run: |
cd frontend
yarn install --frozen-lockfile
yarn build-git
yarn test:ci