chore: upgrade nodejs tooling #88
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow for serving the webapp locally & running Meticulous tests against it. | |
name: Meticulous | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "site/**" | |
pull_request: | |
paths: | |
- "site/**" | |
# Meticulous needs the workflow to be triggered on workflow_dispatch events, | |
# so that Meticulous can run the workflow on the base commit to compare | |
# against if an existing workflow hasn't run. | |
workflow_dispatch: | |
permissions: | |
actions: write | |
contents: read | |
issues: write | |
pull-requests: write | |
statuses: read | |
jobs: | |
meticulous: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout Repository" | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: ./.github/actions/setup-node | |
- name: Build | |
working-directory: ./site | |
run: pnpm build | |
- name: Serve | |
working-directory: ./site | |
run: | | |
pnpm vite preview & | |
sleep 5 | |
- name: Run Meticulous tests | |
uses: alwaysmeticulous/report-diffs-action/cloud-compute@v1 | |
with: | |
api-token: ${{ secrets.METICULOUS_API_TOKEN }} | |
app-url: "http://127.0.0.1:4173/" |