diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f6ba37470..ddc708fe8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,11 +21,9 @@ jobs: with: node-version: 18.13.0 - name: Install - run: | - npm install + run: npm install - name: Run linters - run: | - npm run format + run: npm run format - name: Check if anything changed run: | git_status="`LC_ALL=C git status --porcelain --ignore-submodules -unormal 2>&1`" @@ -46,13 +44,14 @@ jobs: steps: - name: Checkout Branch uses: actions/checkout@v3 + - name: Setup firefox + run: brew install --cask firefox - name: Setup Node uses: actions/setup-node@v3 with: node-version: 18.13.0 - name: Install - run: | - npm install + run: npm install - name: Run tests run: | echo "Running in $BROWSER"