Skip to content

Commit

Permalink
CI: add workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
whitequark committed Jan 6, 2024
1 parent 3959d8f commit e9dbd33
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
patreon: whitequark
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on: [push, pull_request]
name: CI
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: v20.x
- name: Install dependencies
run: npm install
- name: Typecheck code
run: npm run tsc
- name: Lint code
run: npm run lint
- name: Package extension
run: npm exec vsce package
- name: Upload package artifact
uses: actions/upload-artifact@v3
with:
name: package
path: '*.vsix'

0 comments on commit e9dbd33

Please sign in to comment.