Skip to content

Update index.html to trigger previews #15

Update index.html to trigger previews

Update index.html to trigger previews #15

Workflow file for this run

name: Build and test
on:
push:
branches: [main]
pull_request:
types: [opened, reopened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "npm"
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test