-
Notifications
You must be signed in to change notification settings - Fork 10
47 lines (47 loc) · 1.3 KB
/
ci.yaml
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
43
44
45
46
47
name: build-artifact
on:
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
cache: yarn
- name: Install
run: |
yarn install
- name: Lint
run: |
./scripts/fix-eslint-strip-ansi.sh &&
yarn run lint:eslint
- name: Build
run: |
yarn run build:utils &&
yarn run build:syntax &&
yarn run build:web-ext &&
yarn run build:desktop-ext
- name: Build npm package
run: bash ./scripts/build-npm-package.sh
- name: Build Visual Studio Code package
run: bash ./scripts/build-vscode-artifact.sh
- uses: actions/upload-artifact@v4
with:
name: vscode-extension
path: |
artifacts/vscode/*.vsix
artifacts/vscode/*.list
- uses: actions/upload-artifact@v4
with:
name: npm-package
path: |
artifacts/npm/*.tgz
artifacts/npm/*.list