From 64613948ab534c776cb1aee0c24f5d8eff60ff7d Mon Sep 17 00:00:00 2001 From: Matteo Vivona Date: Sat, 23 May 2020 19:20:12 +0200 Subject: [PATCH] ci(yarn): remove yarn job --- .github/workflows/ci.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 075129f4a4..f1daeac015 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,32 +62,3 @@ jobs: - name: Run tests run: | npm run test:ci - - yarn: - runs-on: ${{ matrix.os }} - strategy: - matrix: - node-version: [12.x] - os: [ubuntu-latest, windows-latest, macOS-latest] - steps: - - run: git config --global core.autocrlf false # this is needed to prevent git changing EOL after cloning on Windows OS - - uses: actions/checkout@v2 - - name: Use Node.js - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - name: Init yarn - run: | - npm install -g yarn - - name: Install with yarn - run: | - yarn install - - name: Lint code - run: | - yarn lint - - name: Build - run: | - yarn build - - name: Run tests - run: | - yarn test:ci