Created
May 23, 2021 12:03
-
-
Save tomfa/be73276aaa2d4f54f56da5f9d8fb092b to your computer and use it in GitHub Desktop.
semantic-release setup example
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
name: Release SDK | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
lint: | |
name: Lint SDK | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
- name: Yarn install | |
run: yarn install | |
- name: Check ESLint | |
run: yarn lint:ignore-warnings | |
- name: Check Prettier | |
run: yarn lint:prettier-check | |
test: | |
name: Test SDK | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [12, 14, 16] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
- name: Yarn Install | |
run: yarn install | |
- name: Test sdk | |
run: yarn sdk test | |
release_sdk: | |
name: Release SDK | |
needs: [test, lint] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- uses: actions/cache@v2 | |
id: yarn-cache # use this to check for `cache-hit` | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
- name: Yarn Install | |
run: | | |
yarn install | |
- name: npm deploy | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ".npmrc" | |
yarn sdk release | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
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
npx --no-install commitlint --edit "$1" |
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
module.exports = { extends: ['@commitlint/config-conventional'] }; |
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
{ | |
"name": "vailable", | |
"version": "0.0.0-development", | |
"main": "dist/index", | |
"types": "dist/index", | |
"description": "SDK for using vailable.eu", | |
"dependencies": {}, | |
"devDependencies": { | |
"@commitlint/cli": "^12.1.4", | |
"@commitlint/config-conventional": "^12.1.4", | |
"@types/jest": "^26.0.20", | |
"jest": "^26.6.3", | |
"ts-jest": "^26.5.4", | |
"typescript": "^4.2.3", | |
"semantic-release": "^17.4.3" | |
}, | |
"scripts": { | |
"build": "tsc -pretty -p .", | |
"test": "jest --passWithNoTests", | |
"test:watch": "jest --watch", | |
"semantic-release": "y build && y test && semantic-release" | |
}, | |
"author": "Tomas Albertsen <[email protected]> (http://webutvikling.org/)", | |
"license": "ISC", | |
"repository": { | |
"type": "git", | |
"url": "https://github.com/tomfa/booking-service.git" | |
}, | |
"publishConfig": { | |
"access": "restricted" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Remember to replace
_slash_
in file names with/
– they're inside folders.