Skip to content

Update package.json to point to correct homepage #44

Update package.json to point to correct homepage

Update package.json to point to correct homepage #44

Workflow file for this run

name: CI
on:
pull_request:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
# Setup
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: npm
# We first have to remove package-lock because of https://github.com/npm/cli/issues/4828...
- name: Install dependencies
run: rm package-lock.json && npm install
- name: build
run: npm run build
test:
runs-on: ubuntu-latest
steps:
# Setup
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: npm
# We first have to remove package-lock because of https://github.com/npm/cli/issues/4828...
- name: Install dependencies
run: rm package-lock.json && npm install
- name: Install playwright
run: npx playwright install chromium
- name: test
run: npm run test