-
-
Notifications
You must be signed in to change notification settings - Fork 40
42 lines (33 loc) · 904 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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 }}