Skip to content

Commit

Permalink
fix: remove Circle-CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dblock committed May 9, 2024
1 parent 3d4ae14 commit 211cbc1
Show file tree
Hide file tree
Showing 10 changed files with 69 additions and 191 deletions.
112 changes: 0 additions & 112 deletions .circleci/config.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

name: run-docs-test
name: run-docs-tests

on: push
on: [push, pull_request]
# here add directory listing on push to test
# paths:
# - /docs/*.rst
Expand Down Expand Up @@ -30,7 +30,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-13]
node-version: [12.x]

steps:
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-13]
node-version: [12.x]

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-13]
node-version: [12.x]

steps:
Expand All @@ -32,7 +32,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-13]
node-version: [12.x]

steps:
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/run-lints.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: run-lints

on: [push, pull_request]

jobs:
lint:

runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node-version: [12.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn prettify:check
25 changes: 25 additions & 0 deletions .github/workflows/run-smoke-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: run-smoke-tests

on: [push, pull_request]

jobs:
test-smoke:

runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node-version: [12.x]

steps:
- uses: supercharge/mongodb-github-action@1.6.0
with:
mongodb-version: 4.4
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn test:smoke
9 changes: 2 additions & 7 deletions .github/workflows/run-test.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: run-tests

name: run-test

on: push
on: [push, pull_request]

jobs:
# general test run
test:

runs-on: ${{ matrix.os }}
Expand All @@ -24,5 +20,4 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn lint
- run: yarn test
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Dredd — HTTP API Testing Framework

[![npm version](https://badge.fury.io/js/dredd.svg)](https://www.npmjs.com/package/dredd)
[![Build Status](https://circleci.com/gh/apiaryio/dredd/tree/master.svg?style=svg)](https://circleci.com/gh/apiaryio/dredd/tree/master)
[![Tests](https://github.com/apiaryio/dredd/actions/workflows/run-tests.yml/badge.svg)](https://github.com/apiaryio/dredd/actions/workflows/run-tests.yml)
[![E2E Tests](https://github.com/apiaryio/dredd/actions/workflows/run-e2e-tests.yml/badge.svg)](https://github.com/apiaryio/dredd/actions/workflows/run-e2e-tests.yml)
[![Smoke Tests](https://github.com/apiaryio/dredd/actions/workflows/run-smoke-tests.yml/badge.svg)](https://github.com/apiaryio/dredd/actions/workflows/run-smoke-tests.yml)
[![Build Status](https://ci.appveyor.com/api/projects/status/n3ixfxh72qushyr4/branch/master?svg=true)](https://ci.appveyor.com/project/Apiary/dredd/branch/master)
[![Documentation Status](https://readthedocs.org/projects/dredd/badge/?version=latest)](https://readthedocs.org/projects/dredd/builds/)
[![Known Vulnerabilities](https://snyk.io/test/npm/dredd/badge.svg)](https://snyk.io/test/npm/dredd)
Expand Down
5 changes: 5 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ pygments-apiblueprint==0.2.0
sphinx-tabs==3.2.0
sphinx-panels==0.6.0
myst-parser==0.15.2
sphinxcontrib-applehelp==1.0.4
sphinxcontrib.devhelp==1.0.2
sphinxcontrib.htmlhelp==2.0.1
sphinxcontrib.serializinghtml==1.1.5
sphinxcontrib.qthelp==1.0.3

# dev dependencies
sphinx-autobuild==2021.3.14
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"commitlint-circle": "1.0.0",
"lerna": "^3.22.1"
},
"workspaces": {
Expand Down
Loading

0 comments on commit 211cbc1

Please sign in to comment.