feat: coq icon (#39) #108
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
on: [push, pull_request] | |
jobs: | |
ci: | |
name: CI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: yarn | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Lint files | |
run: yarn lint | |
- name: Verify icons integrity | |
run: yarn integrity | |
- name: Build themes | |
run: yarn build | |
- name: Package Extension | |
id: packageExtension | |
uses: HaaLeo/publish-vscode-extension@v1 | |
with: | |
pat: stub | |
yarn: true | |
dryRun: true | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: catppuccin-vsc-icons.vsix | |
path: ${{ steps.packageExtension.outputs.vsixPath }} |