integration tests enabled #176
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: | |
name: Build | |
runs-on: self-hosted | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x, 20.x] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Installing dependencies | |
run: npm ci | |
- name: Building sources | |
run: npm run build | |
lint: | |
name: Lint Code | |
needs: build | |
runs-on: self-hosted | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- name: Linting | |
run: npm run lint | |
env: | |
CI: true | |
test_unit: | |
name: Unit Tests | |
needs: build | |
runs-on: self-hosted | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
steps: | |
- name: Running unit tests | |
run: npm run test:unit | |
test_integration: | |
name: Integration Tests | |
needs: | |
- lint | |
- test_unit | |
runs-on: self-hosted | |
strategy: | |
max-parallel: 1 | |
matrix: | |
node-version: [18.x, 20.x] | |
steps: | |
- name: Creating `.env` file | |
run: | | |
touch .env | |
echo HOST=${{ secrets.HOST }} >> .env | |
echo EMAIL=${{ secrets.EMAIL }} >> .env | |
echo API_TOKEN=${{ secrets.API_TOKEN }} >> .env | |
- name: Running integration tests | |
run: npm run test:integration |