FEAT: Expo 56, Storybook and uniwind update #193
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: π Code Quality | |
| env: | |
| EXPO_PUBLIC_API_URL: ${{ vars.API_URL }} | |
| EXPO_PUBLIC_AUTH_URL: ${{ vars.AUTH_URL }} | |
| EXPO_PUBLIC_OPENAPI_URL: ${{ vars.OPENAPI_URL }} | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| linter: | |
| name: π§Ή Linter | |
| timeout-minutes: 10 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: π Setup repo | |
| uses: actions/checkout@v4 | |
| - name: π Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 'lts/*' | |
| - name: π¦ Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - name: π¦ Install dependencies | |
| run: pnpm install | |
| - name: Run eslint | |
| run: pnpm run lint:eslint | |
| typescriptChecker: | |
| name: π¦ TypeScript Checker | |
| timeout-minutes: 10 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: 'pnpm' | |
| - name: Install deps | |
| run: pnpm install | |
| - name: Run Typescript checker | |
| run: pnpm run lint:ts |