Update package.json to point to correct homepage #44
Workflow file for this run
This file contains 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
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 | |