From bc2268c3d72d791da04c42659d2240d2b62ce25e Mon Sep 17 00:00:00 2001 From: Jonathan Sharpe Date: Sun, 13 Oct 2024 12:02:12 +0100 Subject: [PATCH] Migration should run with new versions --- .github/workflows/deps.yml | 1 - bin/up-to-date.sh | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deps.yml b/.github/workflows/deps.yml index 1a0d9e1d..5e72f741 100644 --- a/.github/workflows/deps.yml +++ b/.github/workflows/deps.yml @@ -33,5 +33,4 @@ jobs: - run: | git config --global user.name "gh-actions" git config --global user.email "actions@github.com" - - run: npm run migration up - run: ./bin/up-to-date.sh diff --git a/bin/up-to-date.sh b/bin/up-to-date.sh index 44a33053..c372c2de 100755 --- a/bin/up-to-date.sh +++ b/bin/up-to-date.sh @@ -26,6 +26,7 @@ if [ -z "$(git status --porcelain)" ]; then fi useNpm exec -- playwright install +useNpm run migration up useNpm run ship git add "$ROOT"/package{,-lock}.json "$ROOT"/*/package.json git commit --message 'Apply in-range dependency updates'