Merge pull request #44 from comake/version/0.10.0 #117
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: | |
branches: | |
- 'main' | |
- 'versions/*' | |
tags: | |
- 'v*' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
- run: npm ci --ignore-scripts | |
- run: npm run lint | |
test-unit: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: | |
- ubuntu-latest | |
- windows-latest | |
node-version: | |
- '14.2' | |
- '14.x' | |
- '16.0' | |
- '16.x' | |
- '18.0' | |
- '18.x' | |
timeout-minutes: 15 | |
steps: | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Ensure line endings are consistent | |
run: git config --global core.autocrlf input | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Install dependencies and run build scripts | |
run: npm ci | |
- name: Type-check tests | |
run: npm run test:ts | |
- name: Run unit tests | |
run: npm run test:unit | |
- name: Submit unit test coverage | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
flag-name: test-unit-${{ matrix.node-version }}-${{ matrix.operating-system }} | |
parallel: true | |
test-config: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_PASSWORD: 'abc123' | |
POSTGRES_USER: 'postgres' | |
POSTGRES_DB: 'development' | |
ports: | |
- 5432:5432 | |
redis: | |
image: redis | |
ports: | |
- 6379:6379 | |
steps: | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Install dependencies and run build scripts | |
run: npm ci | |
- name: Run deploy tests | |
run: npm run test:deploy | |
test-integration: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
- '14.x' | |
- '16.x' | |
- '18.x' | |
env: | |
TEST_DOCKER: true | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_PASSWORD: 'abc123' | |
POSTGRES_USER: 'postgres' | |
POSTGRES_DB: 'development' | |
ports: | |
- 5432:5432 | |
redis: | |
image: redis | |
ports: | |
- 6379:6379 | |
timeout-minutes: 15 | |
steps: | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Install dependencies and run build scripts | |
run: npm ci | |
- name: Run integration tests | |
run: npm run test:integration | |
test-integration-windows: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
node-version: | |
- '14.x' | |
- '16.x' | |
- '18.x' | |
timeout-minutes: 15 | |
steps: | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Ensure line endings are consistent | |
run: git config --global core.autocrlf input | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Install dependencies and run build scripts | |
run: npm ci | |
- name: Run integration tests | |
run: npm run test:integration | |
coveralls: | |
needs: test-unit | |
runs-on: ubuntu-latest | |
steps: | |
- name: Consolidate test coverage from different jobs | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true |