This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
Archived this extension (#48) #98
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push] | |
jobs: | |
build: | |
name: Tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
run: npm ci | |
- name: Compile | |
run: npm run vscode:prepublish | |
- name: Run tests | |
uses: GabrielBB/[email protected] | |
with: | |
run: npm run test | |
- name: Lint check | |
run: npm run lint |