From bf2fd504144e3d9f68f9a427c1b247f9440e55c9 Mon Sep 17 00:00:00 2001 From: Matt jarrett Date: Wed, 1 Dec 2021 14:43:36 -0600 Subject: [PATCH] fix: semantic-release setup --- .github/dependabot.yml | 3 +++ .github/workflows/release.yml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7649629..1557fac 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,5 +4,8 @@ updates: directory: "/" schedule: interval: "daily" + commit-message: + prefix: "fix" + include: "scope" reviewers: - "cujarrett" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 89002b3..46e33fd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,7 +33,7 @@ jobs: fetch-depth: 0 persist-credentials: false - uses: actions/setup-node@v2 - - run: npm install --production + - run: npm set-script prepare "" && npm ci --only=production - run: npm run build - env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}