From 916aab0f89ad3de89ba03f456b0f6b3e1489aadc Mon Sep 17 00:00:00 2001 From: Mark Tareshawty Date: Wed, 3 May 2023 13:17:21 -0400 Subject: [PATCH 1/4] Make error with quotes --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index b7efa3e..b79fba2 100644 --- a/app.js +++ b/app.js @@ -1,4 +1,4 @@ -import dotenv from 'dotenv' +import dotenv from "dotenv" import fs from 'fs' import http from 'http' import { Octokit, App } from 'octokit' From 0b6bfec18469a7997ce22a2165463b552ee4b897 Mon Sep 17 00:00:00 2001 From: Mark Tareshawty Date: Wed, 3 May 2023 13:18:31 -0400 Subject: [PATCH 2/4] Fix the branch --- .github/workflows/linting.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index dbd9351..023b810 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -2,9 +2,9 @@ name: Linting on: push: - branches: [ $default-branch ] + branches: [ main ] pull_request: - branches: [ $default-branch ] + branches: [ main ] jobs: build: From 44ae5689185e4c006ca9d9d1310cc7f3195860d2 Mon Sep 17 00:00:00 2001 From: Mark Tareshawty Date: Wed, 3 May 2023 13:20:02 -0400 Subject: [PATCH 3/4] Install standard --- .github/workflows/linting.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 023b810..ceb4b4b 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -15,4 +15,5 @@ jobs: with: node-version: 18 cache: 'npm' + - run: npm install standard - run: npm run lint From 372fc077fd0de66ac825c20012eceea3f6dc696f Mon Sep 17 00:00:00 2001 From: Mark Tareshawty Date: Wed, 3 May 2023 13:21:00 -0400 Subject: [PATCH 4/4] Fix quotes issue --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index b79fba2..b7efa3e 100644 --- a/app.js +++ b/app.js @@ -1,4 +1,4 @@ -import dotenv from "dotenv" +import dotenv from 'dotenv' import fs from 'fs' import http from 'http' import { Octokit, App } from 'octokit'