Merge pull request #633 from nasustim/renovate/sharp-0.x #670
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: Test App | |
on: | |
pull_request: | |
paths: | |
- 'src/**' | |
- 'public/**' | |
- '**.tsx?' | |
- '**.jsx?' | |
- '**.cjs' | |
- '**.mjs' | |
- '**.json' | |
- '**.s?css' | |
- .github/workflows/test-app.yml | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: pnpm/action-setup@v2.4.0 | |
- uses: actions/setup-node@v4.0.1 | |
with: | |
node-version-file: .tool-versions | |
cache: pnpm | |
- run: pnpm i --frozen-lockfile | |
- run: pnpm run test | |
- run: pnpm run build | |
- run: pnpm run lint:app:check | |
- run: pnpm run lint:app:format:check | |
- run: pnpm run lint:style:check | |
- run: pnpm run storybook:build |