Skip to content

Compilation & Quality Checks #134

Compilation & Quality Checks

Compilation & Quality Checks #134

Workflow file for this run

name: Development
run-name: Compilation & Quality Checks
on:
push:
branches:
- develop
pull_request:
types:
- opened
branches:
- '*'
- '!develop'
jobs:
build-and-test:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build --workspace=@tomplum/react-git-log
- name: Run Unit Tests
env:
TZ: UTC
run: npm run test:unit:ci --workspace=@tomplum/react-git-log
- name: Run Integration Tests
env:
TZ: UTC
run: npm run test:integration:ci --workspace=@tomplum/react-git-log