Bump @types/node from 20.13.0 to 20.14.0 (#635) #1295
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: VIVIDUS Studio CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
cache: 'maven' | |
- name: Build server | |
run: | | |
cd vividus-studio-server | |
./mvnw clean install | |
- name: Upload coverage reports to Codecov | |
if: ${{ ! github.event.pull_request.head.repo.fork || github.ref == 'refs/heads/main' }} | |
uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Upload coverage reports to Codecov | |
if: ${{ github.event.pull_request.head.repo.fork }} | |
uses: codecov/codecov-action@v4 | |
- name: Install node_modules | |
run: npm install | |
- name: Extension Lint | |
run: npm run lint | |
- name: Extension Tests | |
uses: GabrielBB/xvfb-action@v1.6 | |
with: | |
run: npm test | |
- name: Extension packaging | |
run: | | |
sudo npm install -g @vscode/vsce | |
vsce package |