Skip to content

Commit

Permalink
ci: update ci.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoAnastasiadis committed Feb 8, 2024
1 parent f2c511b commit df848f6
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -2,14 +2,14 @@ name: CI

on:
push:
branches: [ "main" ]
branches: ["main"]
pull_request:
branches: [ "main" ]
branches: ["main"]

jobs:
build:
runs-on: ubuntu-latest
env:
env:
NODE_ENV: development
DATABASE_URL: ${{ secrets.DATABASE_URL }}
DEV_DATABASE_URL: ${{ secrets.DEV_DATABASE_URL }}
@@ -20,11 +20,11 @@ jobs:
FACEBOOK_APP_SECRET: ${{ secrets.FACEBOOK_APP_SECRET }}
VIBER_BOT_SECRET: ${{ secrets.VIBER_BOT_SECRET }}
steps:
- uses: actions/checkout@v3
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run test:e2e
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- run: npm ci
- run: npm run lint
- run: npm run test:e2e

0 comments on commit df848f6

Please sign in to comment.