From a288defb8c09683f4c975ae5bc6a226ba970aa33 Mon Sep 17 00:00:00 2001 From: Christophe CAMENSULI Date: Tue, 9 Jul 2024 14:13:44 +0200 Subject: [PATCH] ci: run sync with npm --- .github/workflows/node.js.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 3bc48c1..3972700 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -27,7 +27,7 @@ jobs: cache: "npm" - run: npm ci --force - run: npm run build --if-present - - run: npx nodefony sequelize sync + - run: npm run nodefony -- sequelize sync - run: ./src/nodefony/bin/nodefony prod - run: npm test @@ -48,7 +48,7 @@ jobs: cache: "npm" - run: npm ci --force - run: npm run build --if-present - - run: npx nodefony sequelize sync + - run: npm run nodefony -- sequelize sync - run: ./src/nodefony/bin/nodefony prod - run: npm test @@ -70,6 +70,6 @@ jobs: - run: npm cache clean --force - run: npm ci --force - run: npm run build --if-present - - run: npx nodefony sequelize sync + - run: npm run nodefony -- sequelize sync - run: ./src/nodefony/bin/nodefony prod - run: npm test