Skip to content

Run tests on GitHub Actions #1

Run tests on GitHub Actions

Run tests on GitHub Actions #1

Workflow file for this run

name: "Static Analysis"
on:
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
# Assert the extension is created successfully
- name: Create vsix file
run: npm run create
- name: Lint
run: npm run lint