small in-process cache for really hot images #38
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: Web client check | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| permissions: read-all | |
| jobs: | |
| check-generated-graphql-client: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: web_client/.nvmrc | |
| - name: Install pnpm | |
| run: npm install -g pnpm@10 | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| working-directory: web_client | |
| - name: Regenerate GraphQL client code | |
| run: pnpm gen | |
| working-directory: web_client | |
| - name: Check for uncommitted changes | |
| run: | | |
| if [ -n "$(git status --porcelain)" ]; then | |
| echo "Generated GraphQL client files are out of date. Run 'cd web_client && pnpm gen' and commit the changes." | |
| git diff | |
| exit 1 | |
| fi | |
| lint-and-typecheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: web_client/.nvmrc | |
| - name: Install pnpm | |
| run: npm install -g pnpm@10 | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| working-directory: web_client | |
| - name: Lint and type-check | |
| run: pnpm run check | |
| working-directory: web_client |