Uses npm for website, hosts playground runner on https://isolated-playground.github.io for better isolation. (#5034)

This commit is contained in:
Henning Dieterichs 2025-10-09 19:05:34 +02:00 committed by GitHub
parent e2764eac56
commit a30f4f9920
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 6523 additions and 3629 deletions

View file

@ -44,15 +44,15 @@ jobs:
- name: Install website node modules
working-directory: website
run: yarn install --frozen-lockfile
run: npm ci
- name: Install most recent version of monaco-editor
working-directory: website
run: yarn add monaco-editor
run: npm install monaco-editor
- name: Build website
working-directory: website
run: yarn run build
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v5