Skip to content

Stripe PoC: checkout and order stubs #326

Stripe PoC: checkout and order stubs

Stripe PoC: checkout and order stubs #326

name: Dev PR Build and Test Pipeline
on:
pull_request:
branches:
- development
jobs:
build-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
run: npm ci
- name: Linter
run: npm run lint
- name: Build
run: npm run build
- name: Test and Coverage
run: npm run test --coverage
- name: Check Production Build Correctness
run: rm -rf node_modules && npm ci --omit=dev && npm run build