Skip to content

Add format dryrun

Add format dryrun #13

Workflow file for this run

---
name: build app
on: [push, pull_request]
jobs:
build-test:
strategy:
matrix:
node-version:
- 18
- 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up node-${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies and build the code
run: npm install
- name: Verify styling
run: npm run format-dryrun
- name: Run build
run: npm run build