Skip to content

Commit

Permalink
chore: new unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
CristiCanizales committed Sep 27, 2023
1 parent 1d55ee4 commit 7fa94c6
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/unitTests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: unit testss
on:
push:
branches-ignore: [main]
workflow_dispatch:

jobs:
unit-tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
nodeVersion:
- 16.15.1
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: yarn
- uses: google/wireit@setup-github-actions-caching/v1
- name: Cache node modules
id: cache-nodemodules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: "**/node_modules"
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}

- uses: salesforcecli/github-workflows/.github/actions/yarnInstallWithRetries@main
if: ${{ steps.cache-nodemodules.outputs.cache-hit != 'true' }}
- run: yarn build
- uses: nick-fields/retry@943e742917ac94714d2f408a0e8320f2d1fcafcd
env:
SF_DISABLE_TELEMETRY: true
name: yarn test
with:
max_attempts: 2
command: yarn test
timeout_minutes: 60

0 comments on commit 7fa94c6

Please sign in to comment.