This repository was archived by the owner on Oct 8, 2025. It is now read-only.
fix(deps): update dependency next-transpile-modules to v10 #289
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| env: | |
| TZ: UTC | |
| OC_ENV: ci | |
| NODE_ENV: test | |
| WEBSITE_URL: http://localhost:3000 | |
| API_URL: http://localhost:3060 | |
| API_KEY: dvl-1510egmf4a23d80342403fb599qd | |
| CI: true | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2-beta | |
| - name: Setup project | |
| uses: ./.github/actions/setup-project | |
| with: | |
| CACHE_VERSION: ${{ secrets.CACHE_VERSION }} | |
| - run: npm run lint:quiet | |
| prettier: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2-beta | |
| - name: Setup project | |
| uses: ./.github/actions/setup-project | |
| with: | |
| CACHE_VERSION: ${{ secrets.CACHE_VERSION }} | |
| - run: npm run prettier:check | |
| typescript: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2-beta | |
| - name: Setup project | |
| uses: ./.github/actions/setup-project | |
| with: | |
| CACHE_VERSION: ${{ secrets.CACHE_VERSION }} | |
| - run: npm run type:check |