Skip to content

Commit 4c64cc2

Browse files
committed
ci: Fix migration name
1 parent ecc76f9 commit 4c64cc2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- synchronize
99
jobs:
1010
run-test:
11+
name: Try build and run unit test
1112
runs-on: ubuntu-latest
1213
steps:
1314
- uses: actions/checkout@v4
@@ -31,6 +32,7 @@ jobs:
3132
# - run: npm nx affected -t deploy --no-agents
3233
run-e2e-test:
3334
runs-on: ubuntu-latest
35+
name: Try run e2e test
3436
needs:
3537
- run-test
3638
services:
@@ -59,3 +61,5 @@ jobs:
5961
uses: ./.github/actions
6062
- run: git branch --track main origin/master
6163
- run: npm run typeorm migration:run
64+
- run: npm run seed:run
65+
- run: npm nx affected -t e2e-ci --parallel=1

libs/database/src/lib/migrations/1607701631900-CreateAddressesTable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { MigrationInterface, QueryRunner, TableColumn, Table } from 'typeorm';
22

3-
export class CreateAddressesTable1607701632000 implements MigrationInterface {
3+
export class CreateAddressesTable1607701631900 implements MigrationInterface {
44
protected readonly tableName = 'addresses';
55

66
public async up(queryRunner: QueryRunner): Promise<void> {

0 commit comments

Comments
 (0)