Skip to content

Commit

Permalink
fix issue with PR check
Browse files Browse the repository at this point in the history
  • Loading branch information
singularity15 committed Dec 12, 2024
1 parent f24ae36 commit ef4bee5
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ jobs:
echo NPM Version
npm --version
echo
- name: Install NPM packages
- name: Install NPM packages (workspace)
run: npm ci -ws
- name: Install NPM packages (root)
run: npm ci
- name: Build API Types Package
run: |
echo Building...
Expand Down
58 changes: 58 additions & 0 deletions .github/workflows/ci.yml.branch
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Node & NPM versions
run: |
echo Node Version
node --version
echo
echo NPM Version
npm --version
echo
- name: Install NPM packages (workspace)
run: npm ci -ws
- name: Install NPM packages (root)
run: npm ci
- name: Build API Types Package
run: |
echo Building...
npm run build-pkg:api-types
- name: Build Rich Types Package
run: |
echo Building...
npm run build-pkg:rich-types
- name: Build Rest Fetch Package
run: |
echo Building...
npm run build-pkg:rest-fetch
- name: Build Client SDK
run: |
echo Building...
npm run build-pkg:client-sdk
- name: Build Shared Package
run: |
echo Building...
npm run build-pkg:shared
- name: Build VS Code Extension
run: |
echo Building...
npm run build-pkg:extension
- name: Build Web App
run: |
echo Building...
npm run build-pkg:web-app

0 comments on commit ef4bee5

Please sign in to comment.