Skip to content

[docs] localized templates #12

[docs] localized templates

[docs] localized templates #12

Workflow file for this run

name: Run Tests on PR to Dev
on:
pull_request:
branches:
- dev
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Run lint
run: yarn lint
- name: Compile the project
run: yarn compile
- name: Set up Xvfb and Run vscode-test
run: xvfb-run -a yarn test:vscode