chore: update deps #2958
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: Integration Testing | |
on: | |
push: | |
branches: | |
- "master" | |
- "develop" | |
pull_request: | |
types: [ready_for_review, synchronize, opened] | |
permissions: | |
contents: read | |
jobs: | |
integration: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:12 | |
env: | |
POSTGRES_USER: ark | |
POSTGRES_PASSWORD: password | |
POSTGRES_DB: ark_unitnet | |
ports: | |
- 5432:5432 | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
strategy: | |
matrix: | |
node-version: [16.x] | |
env: | |
CORE_DB_DATABASE: ark_unitnet | |
CORE_DB_USERNAME: ark | |
POSTGRES_USER: ark | |
POSTGRES_PASSWORD: password | |
POSTGRES_DB: ark_unitnet | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache node modules | |
uses: actions/cache@v1 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: ${{ runner.os }}-node- | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Update system | |
run: sudo apt-get update -y | |
- name: Install xsel & postgresql-client | |
run: sudo apt-get install -q xsel postgresql-client | |
- name: Install and build packages | |
run: yarn setup | |
- name: Create .core/database directory | |
run: mkdir -p $HOME/.core/database | |
- name: Integration tests | |
run: yarn test:integration --coverage --coverageDirectory .coverage/integration/ |