Skip to content

ci: Added UI tests #147

ci: Added UI tests

ci: Added UI tests #147

name: Version checks
on:
push:
branches-ignore:
- 'release/**'
- 'master'
- 'develop'
jobs:
build:
name: Check version bumps
timeout-minutes: 5
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Check version bumps
continue-on-error: true ## Set this to false once versioning has been set up
run: yarn version check
env:
CI: true