chore(deps-dev): bump @types/node from 18.16.3 to 22.10.10 #1806
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: 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 |