From 9385bab27707b0e96b810f52146d63d005958b27 Mon Sep 17 00:00:00 2001 From: jordan-ae Date: Mon, 29 Apr 2024 03:11:04 +0100 Subject: [PATCH] chore: undo unnecessary changes --- .github/workflows/cypress-testing.yml | 2 +- .github/workflows/jest-testing.yml | 4 ++-- .github/workflows/release-please.yml | 2 +- README.md | 7 +------ tsconfig.json | 2 +- 5 files changed, 6 insertions(+), 11 deletions(-) diff --git a/.github/workflows/cypress-testing.yml b/.github/workflows/cypress-testing.yml index 1cf9d5a..eadd68e 100644 --- a/.github/workflows/cypress-testing.yml +++ b/.github/workflows/cypress-testing.yml @@ -2,7 +2,7 @@ name: Run Cypress testing suite on: workflow_dispatch: pull_request: - types: [opened, synchronize] + types: [ opened, synchronize ] jobs: cypress-run: diff --git a/.github/workflows/jest-testing.yml b/.github/workflows/jest-testing.yml index a7e36fa..1671cd4 100644 --- a/.github/workflows/jest-testing.yml +++ b/.github/workflows/jest-testing.yml @@ -2,7 +2,7 @@ name: Run Jest testing suite on: workflow_dispatch: pull_request_target: - types: [opened, synchronize] + types: [ opened, synchronize ] env: NODE_ENV: "test" @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/setup-node@v4 with: - node-version: "20.10.0" + node-version: '20.10.0' - uses: actions/checkout@master with: fetch-depth: 0 diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index a5b40f7..75d28f0 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v4 with: - node-version: "20.10.0" + node-version: '20.10.0' registry-url: https://registry.npmjs.org/ - run: | yarn install --immutable --immutable-cache --check-cache diff --git a/README.md b/README.md index 7b0867a..01b981c 100644 --- a/README.md +++ b/README.md @@ -10,23 +10,18 @@ This template repository includes support for the following: ## Testing ### Cypress - To test with Cypress Studio UI, run - ```shell yarn cy:open ``` Otherwise to simply run the tests through the console, run - ```shell yarn cy:run ``` ### Jest - To start Jest tests, run - ```shell yarn test -``` +``` \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index c6d3097..f9ab3da 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -104,7 +104,7 @@ /* Completeness */ // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ - "skipLibCheck": true /* Skip type checking all .d.ts files. */, + "skipLibCheck": true, /* Skip type checking all .d.ts files. */ "resolveJsonModule": true } }