Skip to content

Add unit tests and update project structure. #344

Add unit tests and update project structure.

Add unit tests and update project structure. #344

Workflow file for this run

name: PR Check
on:
pull_request:
types: [synchronize, opened, reopened, edited]
branches:
- master
- develop
env:
HUSKY: 0
NODE_VERSION: 21
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup
uses: ./.github/actions/setup
with:
node_version: ${{ env.NODE_VERSION }}
- name: Lint
run: npm run lint
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup
uses: ./.github/actions/setup
with:
node_version: ${{ env.NODE_VERSION }}
- name: Format
run: npm run format:check
build_extension:
name: Build Extension
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup
uses: ./.github/actions/setup
with:
node_version: ${{ env.NODE_VERSION }}
- name: Build Extension
run: npm run vsce:package
- name: Upload Extension
uses: actions/upload-artifact@v4
with:
name: languague-renpy-package
path: "**/*.vsix"
if-no-files-found: error
retention-days: 7
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup
uses: ./.github/actions/setup
with:
node_version: ${{ env.NODE_VERSION }}
- name: Run tests (with coverage)
if: success()
id: run_tests
run: npm run test:coverage
shell: bash
- name: Process test output for Codecov
if: success()
uses: codecov/basic-test-results@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: .vscode-test/**/test-results.xml