Allow resetting specific demo tenant in rake task #490
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: Lint | |
| on: push | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Install APT Packages | |
| uses: awalsh128/cache-apt-pkgs-action@v1 | |
| with: | |
| packages: libvips | |
| - name: Ruby Setup | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| - name: Node Setup | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: ".node-version" | |
| cache: "npm" | |
| - run: npm ci | |
| - name: Run lint:check | |
| run: bin/rails lint:check | |
| - name: Check Migration Indexes | |
| uses: speedshop/[email protected] |