Skip to content

[automated] bump e2e test deps to match chainlink/integration-tests #2953

[automated] bump e2e test deps to match chainlink/integration-tests

[automated] bump e2e test deps to match chainlink/integration-tests #2953

Workflow file for this run

name: gauntlet
on:
pull_request:
push:
branches:
- develop
jobs:
tool_versions:
name: Get the tool versions
runs-on: ubuntu-latest
outputs:
nodejs_version: ${{ steps.tool-versions.outputs.nodejs_version }}
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- uses: smartcontractkit/tool-versions-to-env-action@v1.0.8
id: tool-versions
gauntlet_build:
name: Gauntlet Build
runs-on: ubuntu-latest
needs: [tool_versions]
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Setup Node ${{ needs.tool_versions.outputs.nodejs_version }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: ${{ needs.tool_versions.outputs.nodejs_version }}
- name: Install
run: yarn --cwd ./gauntlet install --frozen-lockfile
- name: Build
run: yarn --cwd ./gauntlet build
- name: Run Gauntlet
run: yarn --cwd ./gauntlet gauntlet
gauntlet_format:
name: Gauntlet Format
runs-on: ubuntu-latest
needs: [tool_versions]
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Setup Node ${{ needs.tool_versions.outputs.nodejs_version }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: ${{ needs.tool_versions.outputs.nodejs_version }}
- name: Install
run: yarn --cwd ./gauntlet install --frozen-lockfile
- name: Lint
run: yarn --cwd ./gauntlet lint:format
gauntlet_eslint:
name: Gauntlet ESLint
env:
CI: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Install Nix
uses: cachix/install-nix-action@8887e596b4ee1134dae06b98d573bd674693f47c # v26
with:
nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: "sandbox = false"
- name: Cache Nix
uses: cachix/cachix-action@18cf96c7c98e048e10a83abd92116114cd8504be # v14
with:
name: chainlink-cosmos
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix develop -c yarn --cwd ./gauntlet install --frozen-lockfile
- run: nix develop -c yarn --cwd ./gauntlet eslint
- name: Upload eslint report
if: always()
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
with:
name: gauntlet-eslint-report
path: ./gauntlet/eslint-report.json
gauntlet_run_tests:
name: Gauntlet Run Tests
runs-on: ubuntu-latest
needs: [tool_versions]
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Setup Node ${{ needs.tool_versions.outputs.nodejs_version }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: ${{ needs.tool_versions.outputs.nodejs_version }}
- name: Install
run: yarn --cwd ./gauntlet install --frozen-lockfile
- name: test:ci
run: yarn --cwd ./gauntlet test:ci