style: update eslint rules #1
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: Verify | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| git-town: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git Town | |
| uses: git-town/action@v1 | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install | |
| uses: ./.github/actions/install | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Lint | |
| run: pnpm lint | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install | |
| uses: ./.github/actions/install | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build | |
| run: pnpm build | |
| docker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install | |
| uses: ./.github/actions/install | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build package/playground | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: . | |
| target: playground |