-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Replace CircleCI with GitHub Actions (#759)
Also test Node.js versions 16, 18 and 20.
- Loading branch information
1 parent
eb99c15
commit 6be181b
Showing
5 changed files
with
394 additions
and
326 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Deploy | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
- master | ||
|
||
jobs: | ||
canary: | ||
runs-on: ubuntu-latest | ||
if: github.ref_name == 'develop' && github.repository_owner == 'dequelabs' | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
cache: 'npm' | ||
- run: npm ci | ||
- run: npm run bootstrap | ||
# Make sure the working tree is clean | ||
- run: git reset --hard HEAD | ||
- run: npm config set "//registry.npmjs.org/:_authToken" ${{ secrets.NPM_TOKEN }} | ||
- run: | | ||
npx lerna publish prepatch \ | ||
--no-verify-access \ | ||
--no-git-tag-version \ | ||
--no-push \ | ||
--canary \ | ||
--dist-tag=next \ | ||
--exact \ | ||
--force-publish \ | ||
--yes | ||
production: | ||
runs-on: ubuntu-latest | ||
if: github.ref_name == 'master' && github.repository_owner == 'dequelabs' | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
cache: 'npm' | ||
- run: npm ci | ||
- run: npm run bootstrap | ||
# Make sure the working tree is clean | ||
- run: git reset --hard HEAD | ||
- run: npm config set "//registry.npmjs.org/:_authToken" ${{ secrets.NPM_TOKEN }} | ||
- run: | | ||
npx lerna publish from-package \ | ||
--force-publish='*' \ | ||
--yes | ||
- uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15 |
Oops, something went wrong.