This repository was archived by the owner on Feb 15, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +713
-14
lines changed
Expand file tree Collapse file tree 5 files changed +713
-14
lines changed Original file line number Diff line number Diff line change 1+ # Changesets
2+
3+ Hello and welcome! This folder has been automatically generated by ` @changesets/cli ` , a build tool that works
4+ with multi-package repos, or single-package repos to help you version and publish your code. You can
5+ find the full documentation for it [ in our repository] ( https://github.com/changesets/changesets )
6+
7+ We have a quick list of common questions to get you started engaging with this project in
8+ [ our documentation] ( https://github.com/changesets/changesets/blob/master/docs/common-questions.md )
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://unpkg.com/@changesets/config@1.4.0/schema.json" ,
3+ "changelog" : " @changesets/cli/changelog" ,
4+ "commit" : false ,
5+ "linked" : [],
6+ "access" : " restricted" ,
7+ "baseBranch" : " master" ,
8+ "updateInternalDependencies" : " patch" ,
9+ "ignore" : []
10+ }
Original file line number Diff line number Diff line change 1+ name : Publish Packages
2+ on :
3+ push :
4+ branches :
5+ - master
6+ jobs :
7+ build :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : actions/checkout@v1
11+ - uses : actions/setup-node@v1
12+ with :
13+ node-version : 12
14+ - run : yarn
15+ - run : yarn test
16+ release :
17+ name : Release
18+ runs-on : ubuntu-latest
19+ steps :
20+ - name : Checkout Repo
21+ uses : actions/checkout@v1
22+ - name : Setup Node.js
23+ uses : actions/setup-node@v1
24+ with :
25+ node-version : 12
26+ - name : Install Dependencies
27+ run : yarn
28+ - name : Create Release Pull Request
29+ uses : changesets/action@master
30+ env :
31+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 3030 "ts-node" : " ^8.10.2" ,
3131 "tsc-watch" : " ^4.1.0" ,
3232 "tslib" : " ^2.0.0" ,
33- "typescript" : " ^3.9.7"
33+ "typescript" : " ^3.9.7" ,
34+ "@changesets/cli" : " ^2.12.0"
3435 },
3536 "workspaces" : [
3637 " packages/*"
You can’t perform that action at this time.
0 commit comments