From 6891d83ab55d20b1a2e5c3f3c5c5b1e121db1954 Mon Sep 17 00:00:00 2001 From: AriPerkkio Date: Thu, 2 Nov 2023 21:08:18 +0200 Subject: [PATCH] ci: enable in all branches --- .eslintignore | 1 + .github/workflows/ci.yml | 7 ++++--- .vscode/settings.json | 6 ++++++ 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.eslintignore b/.eslintignore index 80fd57da22c0..efacba96a4a3 100644 --- a/.eslintignore +++ b/.eslintignore @@ -12,3 +12,4 @@ docs/.vitepress/cache/deps/*.* test/core/src/self test/workspaces/results.json test/reporters/fixtures/with-syntax-error.test.js +ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40f16d68efae..c6c2fd24607f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,10 +1,11 @@ name: CI on: + # TODO push: - branches: - - main - + # branches: + # - main + workflow_dispatch: pull_request: branches: - main diff --git a/.vscode/settings.json b/.vscode/settings.json index ad97a240a2a5..07426ee32502 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -10,5 +10,11 @@ "[markdown]": { "editor.formatOnSave": false }, + "[typescript]": { + "editor.formatOnSave": false + }, + "[javascript]": { + "editor.formatOnSave": false + }, "prettier.enable": false }