This repository was archived by the owner on Oct 28, 2025. It is now read-only.
chore(deps-dev): bump lint-staged from 13.2.2 to 16.0.0 #1914
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: Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| unit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out github repository | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 1 | |
| - name: Install node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '18.x' | |
| cache: yarn | |
| cache-dependency-path: '**/yarn.lock' | |
| - name: Install dependencies | |
| run: yarn --frozen-lockfile | |
| - name: Run unit tests | |
| run: yarn test:unit | |
| integration: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out github repository | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 1 | |
| - name: Install node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '18.x' | |
| cache: yarn | |
| cache-dependency-path: '**/yarn.lock' | |
| - name: Install dependencies | |
| run: yarn --frozen-lockfile | |
| - name: Run integration tests | |
| run: yarn test:integration | |
| timeout-minutes: 15 | |
| env: | |
| ALCHEMY_API_KEY: ${{secrets.ALCHEMY_API_KEY}} | |
| BARTER_AUTH_HEADER: ${{secrets.BARTER_AUTH_HEADER}} | |
| BARTER_CUSTOM_SUBDOMAIN: ${{secrets.BARTER_CUSTOM_SUBDOMAIN}} | |
| CODEX_API_KEY: ${{secrets.CODEX_API_KEY}} | |
| # integration-quotes: | |
| # needs: ['integration'] | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: Check out github repository | |
| # uses: actions/checkout@v3 | |
| # with: | |
| # fetch-depth: 1 | |
| # - name: Install node | |
| # uses: actions/setup-node@v3 | |
| # with: | |
| # node-version: '18.x' | |
| # cache: yarn | |
| # cache-dependency-path: '**/yarn.lock' | |
| # - name: Install dependencies | |
| # run: yarn --frozen-lockfile | |
| # - name: Run integration tests | |
| # run: yarn test:integration:quotes | |
| # timeout-minutes: 15 | |
| # env: | |
| # ALCHEMY_API_KEY: ${{secrets.ALCHEMY_API_KEY}} | |
| # RANGO_API_KEY: ${{secrets.RANGO_API_KEY}} | |
| # BARTER_AUTH_HEADER: ${{secrets.BARTER_AUTH_HEADER}} | |
| # BARTER_CUSTOM_SUBDOMAIN: ${{secrets.BARTER_CUSTOM_SUBDOMAIN}} | |
| # CI_CONTEXT: true |