From 7e8621f6b2e609289ab3beeab4f4504ca876c2a4 Mon Sep 17 00:00:00 2001 From: Maksim Syomochkin Date: Tue, 7 Dec 2021 11:35:33 +0300 Subject: [PATCH] remove matrix.os from gh actions --- .github/workflows/main.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ea46356..92b11aa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,11 +4,8 @@ on: [push, pull_request] jobs: lint: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [windows-latest, ubuntu-latest, macos-latest] - name: Test on ${{ matrix.os }} + runs-on: ubuntu-latest + name: Lint steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 @@ -16,7 +13,6 @@ jobs: node-version: "14" - run: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & echo "Started xvfb" shell: bash - if: ${{ success() && matrix.os == 'ubuntu-latest' }} - run: npm install - name: Cache node modules uses: actions/cache@v2