Fix linters #713
Workflow file for this run
This file contains hidden or 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: Build Explorer | |
| on: | |
| push: | |
| jobs: | |
| build-explorer: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Use Node 22.15.0 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22.15.0' | |
| - name: Install root dependencies | |
| run: npm install | |
| - name: Compile TypeScript | |
| run: npm run build | |
| - name: Install explorer dependencies | |
| run: | | |
| cd ./services/explorer | |
| npm install | |
| - name: Build extension | |
| run: | | |
| cd ./services/explorer | |
| npm run build | |