feat: upgrade vanilla-jsoneditor to v2.0 #646
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: ci | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
- name: Set node version to LTS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
cache: pnpm | |
- name: Use npmmirror registry | |
run: pnpm config set registry https://registry.npmmirror.com | |
- run: PUPPETEER_SKIP_DOWNLOAD=1 pnpm install | |
- name: Lint | |
run: npx lint-staged | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
- name: Set node version to LTS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
cache: pnpm | |
- name: Use npmmirror registry | |
run: pnpm config set registry https://registry.npmmirror.com | |
- run: PUPPETEER_SKIP_DOWNLOAD=1 pnpm install | |
- name: Run unit tests | |
run: pnpm run test |