Skip to content

Release 4.2.3

Release 4.2.3 #456

Workflow file for this run

name: Test and build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: corepack enable
- run: |
npm config set '@fortawesome:registry' '${{ secrets.FONTAWESOME_REGISTRY }}'
npm config set '//harding.dev:23435/:_authToken' '${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}'
pnpm install
# TODO: code coverage, reporting, break these steps up
- run: pnpm format
- run: pnpm lint
- run: pnpm test
- run: pnpm typecheck
- run: pnpm build