Skip to content

Fix: Fix date and version in changelog #7

Fix: Fix date and version in changelog

Fix: Fix date and version in changelog #7

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
types: [opened, synchronize, reopened]
push:
branches:
- main
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: npm
- name: Install dependencies
run: npm ci
- name: Run linting
run: npm run lint
- name: Compile extension
run: npm run compile
- name: Setup virtual display for Linux
run: |
sudo apt-get update
sudo apt-get install -y xvfb
- name: Run tests with virtual display
run: xvfb-run -a npm test
env:
CI: true
DISPLAY: :99