From b4285733fe32002289f8020a0726526cb8b05a3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ari=20Perkki=C3=B6?= Date: Wed, 22 Jun 2022 17:36:24 +0000 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 095125aecd40..8ad19b3c2dd9 100644 --- a/.eslintignore +++ b/.eslintignore @@ -9,3 +9,4 @@ coverage !.vitepress docs/.vitepress/cache/deps/*.* test/core/src/self +ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 26bc5da46ad1..2f4366db0905 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 }