Skip to content

Commit

Permalink
chore(): workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
matteolc committed Oct 3, 2023
1 parent 5355fc2 commit 1fae4b3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
lint:
name: ⬣ ESLint
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
Expand All @@ -39,6 +40,7 @@ jobs:
typecheck:
name: ʦ TypeScript
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
Expand All @@ -59,6 +61,7 @@ jobs:
vitest:
name: ⚡ Vitest
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
Expand All @@ -79,6 +82,7 @@ jobs:
cypress:
name: ⚫️ Cypress
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.7"
services:
timescaledb:
image: timescale/timescaledb:latest-pg14
restart: always
restart: on-failure
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
Expand Down

0 comments on commit 1fae4b3

Please sign in to comment.