Skip to content

Upgrade JSDOM to v24 #3218

Upgrade JSDOM to v24

Upgrade JSDOM to v24 #3218

Workflow file for this run

name: CI
on:
push:
branches: [v2]
jobs:
nodejs:
runs-on: ubuntu-latest
steps:
- uses: textbook/take-action@nodejs
with:
node-version: 20
- run: npx playwright install --with-deps
- run: npm run lint
- run: npm run test:cover
env:
FORCE_COLOR: true
- run: npm run e2e
- run: npm run e2e:dev
docker:
runs-on: ubuntu-latest
steps:
- uses: textbook/take-action@nodejs
with:
node-version: 20
- run: npx playwright install --with-deps
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v5
with:
load: true
push: false
tags: textbook/starter-kit:v2
- id: docker-run
run: |
echo "id=$(docker run \
--detach \
--env LOG_LEVEL=debug \
--env NODE_ENV=docker \
--init \
--publish 4321:80 \
textbook/starter-kit:v2)" >> $GITHUB_OUTPUT
- run: npm run e2e
env:
PLAYWRIGHT_BASE_URL: http://localhost:4321
- if: always() && steps.docker-run.outputs.id
run: docker logs ${{ steps.docker-run.outputs.id }}