Skip to content

Prepare for 0.0.3

Prepare for 0.0.3 #43

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-20.04
name: Build
strategy:
matrix:
node: [ 18, 20 ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Build
run: |
npm install
npm run compile-web
- name: Packaging
run: |
npm install -g @vscode/vsce
vsce package
project:
name: Project Checks
runs-on: ubuntu-20.04
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.18.x
- uses: actions/checkout@v4
with:
fetch-depth: 100
- name: "Check DCO sign"
run: |
go install github.com/vbatts/git-validation@v1.1.0
git-validation -v -run DCO