Enable optiojn to retain webview state for side-panel mode (#43) #49
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: Lint vscode-extension | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/lint-extension.yml' | |
- 'packages/vscode-extension/src/**' | |
pull_request: | |
paths: | |
- '.github/workflows/lint-extension.yml' | |
- 'packages/vscode-extension/src/**' | |
jobs: | |
check: | |
if: github.repository == 'software-mansion/react-native-ide' | |
runs-on: ubuntu-latest | |
env: | |
WORKING_DIRECTORY: packages/vscode-extension | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
cache-dependency-path: packages/vscode-extension/package-lock.json | |
- name: Install node dependencies | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
run: npm i | |
- name: Lint extension | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
run: npm run lint |