Skip to content

Commit

Permalink
ci: workflows fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael M committed Feb 19, 2022
1 parent 1752b2f commit e1102ed
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fetch-depth: 0

- name: Setup Node.js and cache
uses: ./.github/actions/nodejs
uses: ./.github/actions/setup-node

- name: Build only changed packages
if: ${{ env.IS_MAIN == 'false' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
fetch-depth: 2

- name: Setup Node.js and cache
uses: ./.github/actions/nodejs
uses: ./.github/actions/setup-node

#- name: Typecheck
# run: npm run typecheck
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ jobs:
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.BM_GITHUB_PAT }}
fetch-depth: 0

- name: Setup Node.js and cache
uses: ./.github/actions/nodejs
uses: ./.github/actions/setup-node

- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v4
Expand Down Expand Up @@ -65,7 +66,7 @@ jobs:
- name: Create GitHub release
run: npm run cd:gh-release
env:
CONVENTIONAL_GITHUB_RELEASER_TOKEN: ${{ secrets.BM_GITHUB_PAT }}
GITHUB_TOKEN: ${{ secrets.BM_GITHUB_PAT }}

concurrency:
group: create-release-${{ github.head_ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fetch-depth: 0

- name: Setup Node.js and cache
uses: ./.github/actions/nodejs
uses: ./.github/actions/setup-node

- name: Test all packages
run: npm run cd:all:test
Expand Down

0 comments on commit e1102ed

Please sign in to comment.