Skip to content

Commit

Permalink
Merge pull request #1084 from vector-im/sdk-release-action
Browse files Browse the repository at this point in the history
Add workflow file for publishing sdk package
  • Loading branch information
MidhunSureshR authored May 4, 2023
2 parents e5d5f46 + f28b23b commit d47fcc6
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/sdk-release.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Must only be called from `release#published` triggers
name: Publish to npm
on:
push:
tags:
- sdk-v**
jobs:
npm:
name: Publish to npm
runs-on: ubuntu-latest
steps:
- name: 🧮 Checkout code
uses: actions/checkout@v3

- name: 🔧 Yarn cache
uses: actions/setup-node@v3
with:
cache: "yarn"
registry-url: "https://registry.npmjs.org"

- name: 🔨 Install dependencies
run: "yarn install --prefer-offline --frozen-lockfile"

- name: Run Unit tests
run: "yarn test"

- name: Run Lint Checks
run: "yarn run lint-ci"

- name: Run Typescript Checks
run: "yarn run tsc"

- name: Run SDK tests
run: "yarn test:sdk"

- name: Build SDK
run: "yarn build:sdk"

- name: 🚀 Publish to npm
id: npm-publish
uses: JS-DevTools/npm-publish@v2
with:
token: ${{ secrets.NPM_TOKEN }}
access: public
package: ./target
dry-run: true

0 comments on commit d47fcc6

Please sign in to comment.