chore: delete test-skipped workflow (#4601)

chore: delete test-skipped workflow

- despite recent changes to improve filtering for MD files, our
test/test-skipped triggers are still throwing up problems e.g.
https://canary.discord.com/channels/935678348330434570/935678739663192184/1290706562796617728
- given a MD-only change is unlikely, and we're likely to have MD files
for changesets more often than not, better to remove test-skipped
altogether until it becomes essential to skip tests
- given our CI has gotten cheaper+faster lately, not a huge overhead to
run for MD-only changes
pull/4605/head
Paul Balaji 2 months ago committed by GitHub
parent bd68ae01e2
commit d010772bb8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 95
      .github/workflows/test-skipped.yml
  2. 6
      .github/workflows/test.yml

@ -1,95 +0,0 @@
# This is here to satisfy the PR requirements when only markdown changes occur.
name: test
on:
# Auto-pass tests if only md files are changed
push:
branches: [main]
paths:
- '!**/*'
- '**/*.md'
# Auto-pass tests if only md files are changed
pull_request:
branches:
- '*'
paths:
- '!**/*'
- '**/*.md'
concurrency:
group: e2e-${{ github.ref }}
cancel-in-progress: ${{ github.ref_name != 'main' }}
jobs:
yarn-install:
runs-on: ubuntu-latest
steps:
- name: Instant pass
run: echo "yarn-install job passed"
lint-prettier:
runs-on: ubuntu-latest
steps:
- name: Instant pass
run: echo "lint-prettier job passed"
yarn-test:
runs-on: ubuntu-latest
steps:
- name: Instant pass
run: echo "yarn-test job passed"
agent-configs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
environment: [mainnet3, testnet4]
steps:
- name: Instant pass
run: echo "agent-configs job passed"
e2e-matrix:
runs-on: ubuntu-latest
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.base_ref == 'main') || github.event_name == 'merge_group'
strategy:
matrix:
e2e-type: [cosmwasm, non-cosmwasm]
steps:
- name: Instant pass
run: echo "e2e-matrix job passed"
cli-advanced-e2e:
runs-on: ubuntu-latest
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.base_ref == 'main') || github.event_name == 'merge_group'
strategy:
matrix:
include:
- test-type: preset_hook_enabled
- test-type: configure_hook_enabled
- test-type: pi_with_core_chain
steps:
- name: Instant pass
run: echo "cli-advanced-e2e job passed"
env-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
environment: [mainnet3]
chain: [ethereum, arbitrum, optimism, inevm, viction]
module: [core, igp]
include:
- environment: testnet4
chain: sepolia
module: core
steps:
- name: Instant pass
run: echo "env-test job passed"
coverage:
runs-on: ubuntu-latest
steps:
- name: Instant pass
run: echo "coverage job passed"

@ -4,16 +4,10 @@ on:
# Triggers the workflow on pushes to main branch, ignoring md files
push:
branches: [main]
paths:
- '**/*'
- '!**/*.md'
# Triggers on pull requests, ignoring md files
pull_request:
branches:
- '*'
paths:
- '**/*'
- '!**/*.md'
merge_group:
workflow_dispatch:

Loading…
Cancel
Save