Skip to content

Merge branch 'master' of github.com:molvqingtai/WebChat #10

Merge branch 'master' of github.com:molvqingtai/WebChat

Merge branch 'master' of github.com:molvqingtai/WebChat #10

Workflow file for this run

name: CD
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: lts/*
- uses: pnpm/[email protected]
with:
version: latest
- run: pnpm install --ignore-scripts
- run: pnpm wxt prepare
- run: pnpm run lint
- run: pnpm run tsc
release:
needs: linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# https://github.com/semantic-release/semantic-release/issues/2636
with:
persist-credentials: false
- uses: actions/setup-node@v2
with:
node-version: lts/*
- uses: pnpm/[email protected]
with:
version: latest
- run: pnpm install --ignore-scripts
- run: pnpm wxt prepare
- run: pnpm semantic-release
env:
GH_TOKEN: ${{ secrets.WEB_CHAT_GITHUB_TOKEN }}