[Feature] Add Plugins #118
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: CI | |
on: | |
push: | |
branches: | |
- source | |
issues: | |
types: | |
[ | |
opened, | |
closed, | |
edited, | |
milestoned, | |
labeled, | |
unlabeled, | |
reopened, | |
demilestoned, | |
] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [19.x] | |
steps: | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
- uses: actions/checkout@v3 | |
- name: Download Issue and Publish | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
pnpm i | |
pnpm action | |
pnpm build | |
pnpm run deploy |