Skip to content

Generator: Add bikeNumberValidation and fix carNumberValidation #997

Generator: Add bikeNumberValidation and fix carNumberValidation

Generator: Add bikeNumberValidation and fix carNumberValidation #997

Workflow file for this run

# Workflow to verify the code style of the commit, that it builds correctly
# and make sure unit tests run too with all supported node versions
name: CI
on:
push:
branches: [ main, od_2023 ]
pull_request:
branches: [ main, od_2023 ]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
env:
PROJECT_CONFIG: ${{ github.workspace }}/example/demo_survey/config.js
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: copy env file
run: cp .env.example .env
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn
- name: Compile
run: yarn compile
- name: Build Client bundle
run: yarn build:prod
- name: Unit Test
run: yarn test
code-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install
run: yarn install
- name: Compile
run: yarn compile
- name: Lint
run: yarn lint