From 72d2447b25ebfa9d5ad443dbdd904c1b29af96f1 Mon Sep 17 00:00:00 2001 From: Piotr Kowalski Date: Fri, 17 Jan 2025 13:35:23 +0100 Subject: [PATCH] Reformat with Prettier --- .github/workflows/testing.yml | 47 +++++++++++++++++------------------ 1 file changed, 23 insertions(+), 24 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index eb033c4..0309110 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -4,31 +4,30 @@ name: Testing on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] + push: + branches: ["master"] + pull_request: + branches: ["master"] jobs: - build: + build: + runs-on: ubuntu-latest - runs-on: ubuntu-latest + strategy: + matrix: + node-version: [16.x, 18.x, 20.x, 22.x] - strategy: - matrix: - node-version: [16.x, 18.x, 20.x, 22.x] - - steps: - - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - - run: npm ci - - run: npm run build --if-present - - run: npm run lint --if-present - - run: npm test - - run: npm run e2e --if-present - env: - CI: true + steps: + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + cache: "npm" + - run: npm ci + - run: npm run build --if-present + - run: npm run lint --if-present + - run: npm test + - run: npm run e2e --if-present + env: + CI: true