Skip to content

Commit

Permalink
Add linting.yaml to action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
felipemaion authored Jul 8, 2024
1 parent d422de5 commit 217f164
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 'lts/hydrogen'
node-version: "lts/hydrogen"

- run: npm ci

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 'lts/hydrogen'
node-version: "lts/hydrogen"

- run: npm ci

Expand Down
3 changes: 1 addition & 2 deletions infra/compose.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
services:
database:
container_name: "postgres-dev"
image: 'postgres:16.0-alpine3.18'
image: "postgres:16.0-alpine3.18"
env_file:
- ../.env.development
ports:
- "5432:5432"

4 changes: 2 additions & 2 deletions infra/migrations/1710383390337_test-migration.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

exports.shorthands = undefined;

exports.up = pgm => {};
exports.up = (pgm) => {};

exports.down = pgm => {};
exports.down = (pgm) => {};
8 changes: 4 additions & 4 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"compilerOptions": {
"baseUrl": "."
}
}
"compilerOptions": {
"baseUrl": "."
}
}

0 comments on commit 217f164

Please sign in to comment.