remove copy #109
Workflow file for this run
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
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 |