Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 0 additions & 39 deletions .github/workflows/bundle-size.yml

This file was deleted.

9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,15 @@ jobs:
- name: Execute 'npm ci' in monorepo
run: npm ci

- name: Install source
run: npm i --prefix source

- name: Install examples
run: npm ci --prefix examples

- name: Install www
run: npm i --prefix www

- name: Execute 'npm i' in www/dataserver
run: npm run www-dataserver:install

Expand Down Expand Up @@ -136,6 +142,9 @@ jobs:
- name: Execute 'npm ci' in monorepo
run: npm ci

- name: Install source
run: npm i --prefix source

- name: Install examples
run: npm ci --prefix examples

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/rebuild-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ jobs:
- name: Install
run: npm ci --force

- name: Install source
run: npm i --prefix source

- name: Install www
run: npm ci --prefix www

- name: 'Building'
run: |
npm run build:all
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,15 @@ jobs:
- name: Install
run: npm ci

- name: Install source
run: npm i --prefix source

- name: Install examples
run: npm ci --prefix examples

- name: Install www
run: npm i --prefix www

- name: Get installed Playwright version
id: playwright-version
run: echo "::set-output name=version::$(npm ls @playwright/test | grep @playwright | sed 's/.*@//')"
Expand Down
Loading