Skip to content
Open
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
5 changes: 4 additions & 1 deletion .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,14 @@ jobs:
- name: Install Dependencies
run: npm ci --force

- name: Install Web Dependencies
run: npm --prefix src/web ci --force

- name: Lint
run: npm run lint

- name: Build
run: npm run build
run: npm run build-all

- name: Test
run: npm run test
Expand Down
11 changes: 4 additions & 7 deletions .github/workflows/pre_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,10 @@ jobs:
- name: Install dependencies
run: npm ci --force

- name: Build web widgets
working-directory: src/web
run: |
npm ci
npm run build

- name: Install Web Dependencies
run: npm --prefix src/web ci --force

- name: Build
run: npm run build
run: npm run build-all

- run: npx -y pkg-pr-new publish
18 changes: 6 additions & 12 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,13 +148,10 @@ jobs:
cache-dependency-path: 'package-lock.json'
- name: Install dependencies
run: npm ci --force
- name: Build web widgets
working-directory: src/web
run: |
npm ci
npm run build
- name: Install Web Dependencies
run: npm --prefix src/web ci --force
- name: Build module
run: npm run build
run: npm run build-all
- name: Prepare MCPB package
run: |
mkdir mcpb
Expand Down Expand Up @@ -224,12 +221,9 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci --force
- name: Build web widgets
working-directory: src/web
run: |
npm ci
npm run build
- name: Install Web Dependencies
run: npm --prefix src/web ci --force
- name: Build module
run: npm run build
run: npm run build-all
- name: Publish to NPM
run: npm publish
Loading
Loading