From 2f2f9478616cae2b4b63c41ffddebb81f8f38cb9 Mon Sep 17 00:00:00 2001 From: Yotam Mann Date: Thu, 25 Apr 2024 13:29:26 -0400 Subject: [PATCH] 2 spaces instead of 4 --- .github/workflows/test.yml | 214 ++++++++++++++++++------------------- 1 file changed, 107 insertions(+), 107 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 966a8e26..ac674a79 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,111 +1,111 @@ name: Run tests on: - pull_request: - types: [opened, reopened, synchronize] - branches: - - dev - push: - branches: - - dev + pull_request: + types: [opened, reopened, synchronize] + branches: + - dev + push: + branches: + - dev jobs: - run-tests: - name: All tests - permissions: - contents: read - id-token: write - runs-on: ubuntu-latest - env: - BROWSER: chrome - steps: - - name: Check out Git repository - uses: actions/checkout@v2 - - name: Setup Nodejs - uses: actions/setup-node@v4 - with: - node-version: 18.12.0 - cache: 'npm' - - name: Install dependencies - run: npm install - - name: Build - run: npm run build - - name: All tests - run: npm run test - test-code-examples: - name: Check typedocs - permissions: - contents: read - id-token: write - runs-on: ubuntu-latest - steps: - - name: Check out Git repository - uses: actions/checkout@v2 - - name: Setup Nodejs - uses: actions/setup-node@v4 - with: - node-version: 18.12.0 - cache: 'npm' - - name: Install dependencies - run: npm install - - name: Build Docs - run: npm run build && npm run docs:json - - name: tsdoc @example checks - run: npm run test:examples - test-html-examples: - name: Run HTML Examples - permissions: - contents: read - id-token: write - runs-on: ubuntu-latest - steps: - - name: Check out Git repository - uses: actions/checkout@v2 - - name: Setup Nodejs - uses: actions/setup-node@v4 - with: - node-version: 18.12.0 - cache: 'npm' - - name: Install dependencies - run: npm install - - name: Build - run: npm run build - - name: Code example tests - run: npm run test:html - test-lint: - name: Linting and environment checks - permissions: - contents: read - id-token: write - runs-on: ubuntu-latest - steps: - - name: Check out Git repository - uses: actions/checkout@v2 - - name: Setup Nodejs - uses: actions/setup-node@v4 - with: - node-version: 18.12.0 - cache: 'npm' - - name: Install dependencies - run: npm install - - name: Linting - run: npm run lint - test-readme: - name: Ensure that examples in the README compile - permissions: - contents: read - id-token: write - runs-on: ubuntu-latest - steps: - - name: Check out Git repository - uses: actions/checkout@v2 - - name: Setup Nodejs - uses: actions/setup-node@v4 - with: - node-version: 18.12.0 - cache: 'npm' - - name: Install dependencies - run: npm install - - name: Build - run: npm run build - - name: Test - run: npm run test:readme \ No newline at end of file + run-tests: + name: All tests + permissions: + contents: read + id-token: write + runs-on: ubuntu-latest + env: + BROWSER: chrome + steps: + - name: Check out Git repository + uses: actions/checkout@v2 + - name: Setup Nodejs + uses: actions/setup-node@v4 + with: + node-version: 18.12.0 + cache: 'npm' + - name: Install dependencies + run: npm install + - name: Build + run: npm run build + - name: All tests + run: npm run test + test-code-examples: + name: Check typedocs + permissions: + contents: read + id-token: write + runs-on: ubuntu-latest + steps: + - name: Check out Git repository + uses: actions/checkout@v2 + - name: Setup Nodejs + uses: actions/setup-node@v4 + with: + node-version: 18.12.0 + cache: 'npm' + - name: Install dependencies + run: npm install + - name: Build Docs + run: npm run build && npm run docs:json + - name: tsdoc @example checks + run: npm run test:examples + test-html-examples: + name: Run HTML Examples + permissions: + contents: read + id-token: write + runs-on: ubuntu-latest + steps: + - name: Check out Git repository + uses: actions/checkout@v2 + - name: Setup Nodejs + uses: actions/setup-node@v4 + with: + node-version: 18.12.0 + cache: 'npm' + - name: Install dependencies + run: npm install + - name: Build + run: npm run build + - name: Code example tests + run: npm run test:html + test-lint: + name: Linting and environment checks + permissions: + contents: read + id-token: write + runs-on: ubuntu-latest + steps: + - name: Check out Git repository + uses: actions/checkout@v2 + - name: Setup Nodejs + uses: actions/setup-node@v4 + with: + node-version: 18.12.0 + cache: 'npm' + - name: Install dependencies + run: npm install + - name: Linting + run: npm run lint + test-readme: + name: Ensure that examples in the README compile + permissions: + contents: read + id-token: write + runs-on: ubuntu-latest + steps: + - name: Check out Git repository + uses: actions/checkout@v2 + - name: Setup Nodejs + uses: actions/setup-node@v4 + with: + node-version: 18.12.0 + cache: 'npm' + - name: Install dependencies + run: npm install + - name: Build + run: npm run build + - name: Test + run: npm run test:readme \ No newline at end of file