feat(type,type-compiler,type-spec): resolve type name for type only imports and classes #942
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: | |
pull_request: | |
push: | |
jobs: | |
unit-tests: | |
runs-on: buildjet-2vcpu-ubuntu-2004 | |
strategy: | |
matrix: | |
node-version: [20.6.0] | |
services: | |
storage-ftp: | |
image: garethflowers/ftp-server:0.7.0 | |
env: | |
FTP_USER: user | |
FTP_PASS: '123' | |
ports: | |
- "20-21:20-21" | |
- "40000-40009:40000-40009" | |
storage-sftp: | |
image: atmoz/sftp:alpine | |
env: | |
SFTP_USERS: user:123:::upload | |
ports: | |
- "2222:22" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: npm install | |
run: npm ci | |
- name: Build | |
run: | | |
./node_modules/.bin/tsc --build \ | |
packages/angular-universal/tsconfig.json \ | |
packages/api-console-module/tsconfig.json \ | |
packages/broker/tsconfig.json \ | |
packages/bson/tsconfig.json \ | |
packages/core/tsconfig.json \ | |
packages/core-rxjs/tsconfig.json \ | |
packages/filesystem/tsconfig.json \ | |
packages/framework/tsconfig.json \ | |
packages/framework-debug-api/tsconfig.json \ | |
packages/framework-integration/tsconfig.json \ | |
packages/orm-browser-api/tsconfig.json \ | |
packages/rpc/tsconfig.json \ | |
packages/event/tsconfig.json \ | |
packages/workflow/tsconfig.json \ | |
packages/stopwatch/tsconfig.json \ | |
packages/injector/tsconfig.json \ | |
packages/app/tsconfig.json \ | |
packages/http/tsconfig.json \ | |
packages/orm/tsconfig.json \ | |
packages/sql/tsconfig.json \ | |
packages/sqlite/tsconfig.json \ | |
packages/topsort/tsconfig.json \ | |
packages/type/tsconfig.json \ | |
packages/type-spec/tsconfig.json | |
- name: Test | |
run: | | |
npm run test:coverage \ | |
packages/angular-universal/ \ | |
packages/broker/ \ | |
packages/bson/ \ | |
packages/core/ \ | |
packages/core-rxjs/ \ | |
packages/filesystem/ \ | |
packages/framework/ \ | |
packages/framework-debug-api/ \ | |
packages/framework-integration/ \ | |
packages/rpc/ \ | |
packages/topsort/ \ | |
packages/event/ \ | |
packages/http/ \ | |
packages/injector/ \ | |
packages/logger/ \ | |
packages/template/ \ | |
packages/stopwatch/ \ | |
packages/workflow/ \ | |
packages/type/ | |
- name: Send coverage | |
run: ./node_modules/.bin/codecov -f coverage/*.json | |
orm-postgres: | |
needs: | |
- unit-tests | |
runs-on: buildjet-2vcpu-ubuntu-2004 | |
strategy: | |
matrix: | |
node-version: [20.6.0] | |
postgres-version: [ 14 ] | |
services: | |
postgres: | |
image: postgres:${{ matrix.postgres-version }} | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: '' | |
POSTGRES_HOST_AUTH_METHOD: trust | |
ports: | |
- "5432:5432" | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Cache node_modules | |
uses: actions/cache@v1 | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-postgres-node_modules-${{ hashFiles('**/package-lock.json') }} | |
- name: npm install | |
run: npm ci | |
- name: Build | |
run: | | |
./node_modules/.bin/tsc --build packages/postgres/tsconfig.json; | |
- name: Test | |
run: npm run test:coverage packages/postgres/ | |
- name: Send coverage | |
run: ./node_modules/.bin/codecov -f coverage/*.json | |
orm-mysql: | |
needs: | |
- unit-tests | |
runs-on: buildjet-2vcpu-ubuntu-2004 | |
strategy: | |
matrix: | |
node-version: [20.6.0] | |
mysql-version: [ 8.0 ] | |
services: | |
mysql: | |
image: "mysql:${{ matrix.mysql-version }}" | |
options: >- | |
--health-cmd "mysqladmin ping --silent" | |
-e MYSQL_ALLOW_EMPTY_PASSWORD=yes | |
-e MYSQL_DATABASE=default | |
ports: | |
- "3306:3306" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Cache node_modules | |
uses: actions/cache@v1 | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-mysql-node_modules-${{ hashFiles('**/package-lock.json') }} | |
- name: npm install | |
run: npm ci | |
- name: Build | |
run: | | |
./node_modules/.bin/tsc --build packages/mysql/tsconfig.json | |
- name: Test | |
run: npm run test:coverage packages/mysql/ | |
- name: Send coverage | |
run: ./node_modules/.bin/codecov -f coverage/*.json | |
orm-sqlite: | |
needs: | |
- unit-tests | |
runs-on: buildjet-2vcpu-ubuntu-2004 | |
strategy: | |
matrix: | |
node-version: [20.6.0] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Cache node_modules | |
uses: actions/cache@v1 | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-sqlite-node_modules-${{ hashFiles('**/package-lock.json') }} | |
- name: npm install | |
run: npm ci | |
- name: Build | |
run: | | |
./node_modules/.bin/tsc --build packages/sqlite/tsconfig.json | |
- name: Test | |
run: npm run test:coverage packages/sqlite/ | |
- name: Send coverage | |
run: ./node_modules/.bin/codecov -f coverage/*.json | |
orm-mongo: | |
needs: | |
- unit-tests | |
runs-on: buildjet-2vcpu-ubuntu-2004 | |
strategy: | |
matrix: | |
node-version: [20.6.0] | |
mongo-version: [ 4.0 ] | |
services: | |
# this is used for the simple-auth test | |
mongo: | |
image: mongo:5.0.10 | |
ports: | |
- 27018:27017 | |
env: | |
MONGO_INITDB_ROOT_USERNAME: root | |
MONGO_INITDB_ROOT_PASSWORD: root | |
MONGO_INITDB_DATABASE: root-db | |
volumes: | |
- /packages/mongo/tests/docker/simple-auth/mongo-init.js:/docker-entrypoint-initdb.d/mongo-init.js | |
steps: | |
- name: Start MongoDB | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: ${{ matrix.mongo-version }} | |
mongodb-replica-set: test-rs | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Cache node_modules | |
uses: actions/cache@v1 | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-mongo-node_modules-${{ hashFiles('**/package-lock.json') }} | |
- name: npm install | |
run: npm ci | |
- name: Build | |
run: | | |
./node_modules/.bin/tsc --build packages/mongo/tsconfig.json | |
- name: Test | |
run: npm run test:coverage packages/mongo/ | |
- name: Send coverage | |
run: ./node_modules/.bin/codecov -f coverage/*.json |