Skip to content

POCD-579 feat: enhance testing setup and improve error handling in CardField #2

POCD-579 feat: enhance testing setup and improve error handling in CardField

POCD-579 feat: enhance testing setup and improve error handling in CardField #2

Workflow file for this run

name: "CI"
on: [pull_request]
permissions:
contents: read
jobs:
build:
name: "Build and test"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache node modules
id: cache-nodemodules
uses: actions/cache@v4
with:
path: |
node_modules
key: ${{ runner.os }}-build-cache-node-modules-${{ hashFiles('./yarn.lock') }}
restore-keys: |
${{ runner.os }}-build-cache-node-modules-
- name: Install dependencies
if: steps.cache-nodemodules.outputs.cache-hit != 'true'
run: yarn install --prefer-offline --frozen-lockfile
- name: Build
run: yarn build
- name: Test
run: yarn test:built