Skip to content

Commit

Permalink
Fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
sabigara committed Jan 15, 2023
1 parent 35adf80 commit eaf8c14
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml → .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: pull_request
env:
CI: true
jobs:
version:
check:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
Expand All @@ -24,4 +24,4 @@ jobs:
run: pnpm build
# TODO: use turborepo to cache and speed up?
- name: check
run: pnpm ci
run: pnpm ci:check
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: install pnpm
run: npm i pnpm@latest -g
- name: Setup npmrc
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
- name: setup pnpm config
run: pnpm config set store-dir $PNPM_CACHE_FOLDER
- name: install dependencies
Expand All @@ -32,6 +32,6 @@ jobs:
with:
commit: "chore: update versions"
title: "chore: update versions"
publish: pnpm publish
publish: pnpm ci:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "jest",
"ci": "concurrently \"pnpm typecheck\" \"pnpm lint\" \"pnpm format\" \"pnpm test\"",
"publish": "pnpm build --filter=\"./packages/*\" && pnpm changeset publish"
"ci:check": "concurrently \"pnpm typecheck\" \"pnpm lint\" \"pnpm format\" \"pnpm test\"",
"ci:publish": "pnpm build --filter=\"./packages/*\" && pnpm changeset publish"
},
"dependencies": {
"@mdx-js/react": "^2.1.5",
Expand Down

1 comment on commit eaf8c14

@vercel
Copy link

@vercel vercel bot commented on eaf8c14 Jan 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

camome-web-beta – ./

camome-web-beta.vercel.app
camome-web-beta-git-main-rubik.vercel.app
camome-web-beta-rubik.vercel.app

Please sign in to comment.