From 190fd3010188eba77b8f7d46b55de368e77dc1c2 Mon Sep 17 00:00:00 2001 From: Jan Kassens Date: Fri, 30 Sep 2022 18:00:15 -0400 Subject: [PATCH] CI: delete appveyor config I noticed this file as #24892 is updating the NodeJS version in it. I don't think this is used for anything as the config just runs a handful of yarn commands and I assume that's all covered by CircleCI. --- appveyor.yml | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index a50df340f51ae..0000000000000 --- a/appveyor.yml +++ /dev/null @@ -1,41 +0,0 @@ -image: Visual Studio 2017 - -# Fix line endings in Windows. (runs before repo cloning) -init: - - git config --global core.autocrlf input - -environment: - JAVA_HOME: C:\Program Files\Java\jdk1.8.0 - matrix: - - nodejs_version: 10 - -# Finish on first failed build -matrix: - fast_finish: true - -platform: - - x64 - -branches: - only: - - main - -# Disable Visual Studio build and deploy -build: off -deploy: off - -install: - - ps: Install-Product node $env:nodejs_version $env:platform - - yarn install --frozen-lockfile - -test_script: - - node --version - - yarn lint -# - yarn flow-ci - - yarn build - - yarn test - - yarn prettier - -cache: - - node_modules - - "%LOCALAPPDATA%/Yarn"