-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f24ae36
commit ef4bee5
Showing
2 changed files
with
61 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |