Skip to content

RFC: Update timestamps to reflect dev status changes #509

RFC: Update timestamps to reflect dev status changes

RFC: Update timestamps to reflect dev status changes #509

Workflow file for this run

on: [pull_request]
jobs:
verify-app:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
- name: Setup node
uses: actions/setup-node@bea5baf987ba7aa777a8a0b4ace377a21c45c381 # v3
with:
node-version: '18'
cache: 'npm'
- name: Install
run: npm ci
- name: Build the app
run: npm run build
- name: Check lint errors
run: npm run lint
- name: Check formatting errors
run: npm run format:check
- name: Run unit tests
run: npm run test:unit
- name: Run integration tests
run: npm run test:it:ci
- name: Build Docker image
run: docker build .