Skip to content

Update README.md

Update README.md #80

Workflow file for this run

name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Use Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- run: |
python -m pip install --upgrade pip
pip install pytest
- run: npm ci
- run: cd ui && npx playwright install && cd ..
- run: npm test
- run: |
cd vscode
echo 'LICENSE' > LICENSE
npx vsce package