Skip to content

8 initial readme file #22

8 initial readme file

8 initial readme file #22

Workflow file for this run

name: Continuous Integration Pipeline
on:
pull_request:
branches:
- development
jobs:
checks-lint-type-test-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Load node version
run: echo "NODE_VERSION=$(cat .env | grep NODE_VERSION | cut -d '=' -f2)" >> $GITHUB_ENV
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: "npm"
- run: npm ci
- name: Lint
run: make ci-lint
- name: Type Check
run: make ci-tsc
- name: Tests
run: make ci-test
- name: Build
run: make ci-build