add unit test & build & publish actions #23
Workflow file for this run
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: build | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build-and-upload-artifact: | |
runs-on: ubuntu-latest | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
permissions: | |
contents: read | |
packages: read | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Add SSH key to chekout a private repo | |
uses: webfactory/ssh-agent@v0.7.0 | |
with: | |
ssh-private-key: ${{ secrets.REPO_SSH_KEY }} | |
- name: Setup 🛠️ | |
uses: ./.github/actions/setup | |
- name: Build 🔧 | |
run: | | |
pnpm install | |
pnpm run lint | |
pnpm run test | |
pnpm run build | |
MY_PATH=$(ls packages/rtc/dist | awk -F/ '{print $NF}') | |
echo "::set-output name=dist_path::${MY_PATH}" | |
echo ${MY_PATH} | |
- name: Upload Artifact ⬆️ | |
uses: actions/upload-artifact@v3 | |
with: | |
name: iris-web-rtc | |
path: ${{steps.dist.outputs.dist_path}} |