Merge pull request #269 from Mopsgamer/main #363
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: Continuous Integration | |
on: | |
push: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v3 | |
- name: Use Node.js 19 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 19.7.0 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Build | |
run: | | |
pnpm package | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ubuntu-latest | |
path: vscord-*.vsix |