Skip to content

Commit

Permalink
Merge pull request #201 from levino/feature/undo-msw-release
Browse files Browse the repository at this point in the history
Revert "feat: use msw instead of nock"
  • Loading branch information
kodiakhq[bot] committed Jul 16, 2023
2 parents dd650de + 2dbfd9e commit 4ad4623
Show file tree
Hide file tree
Showing 538 changed files with 15,739 additions and 16,544 deletions.
44 changes: 44 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
version: 2.1
jobs:
build:
docker:
- image: cimg/node:lts
parameters:
nock-version:
description: 'nock version'
default: '13'
type: string
steps:
- checkout
- run:
name: install-dependencies
command: yarn
- run:
name: test
command: yarn test
environment:
NOCK_VERSION: << parameters.nock-version >>
lint:
docker:
- image: cimg/node:lts
steps:
- checkout
- run:
name: install-dependencies
command: yarn
- run:
name: linting
command: yarn lint
- run:
name: prettier check
command: yarn format --check

workflows:
version: 2
main:
jobs:
- build:
matrix:
parameters:
nock-version: ['11', '12', '13']
- lint
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

22 changes: 13 additions & 9 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"root": true
}
"parser":"@typescript-eslint/parser",
"plugins":[
"@typescript-eslint"
],
"extends":[
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"env":{
"node":true
}
}
56 changes: 0 additions & 56 deletions .github/workflows/checks.yml

This file was deleted.

3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,8 @@ jspm_packages/
# IDE settings
.idea
.vscode
!.vscode/settings.json

/build
build
.yarn/*
!.yarn/cache
!.yarn/patches
Expand Down
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

yarn test run
yarn test
Loading

0 comments on commit 4ad4623

Please sign in to comment.