Skip to content

Commit

Permalink
chore: skip default tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptobench committed Oct 2, 2023
1 parent 19ef1bc commit c17f207
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,32 +19,32 @@ permissions:
contents: read # for checkout

jobs:
regular-checks:
name: Build and unit-test on supported platforms and NodeJS versions
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
os: [ubuntu-latest, windows-latest, macos-latest]
# regular-checks:
# name: Build and unit-test on supported platforms and NodeJS versions
# strategy:
# matrix:
# node-version: [16.x, 18.x, 20.x]
# os: [ubuntu-latest, windows-latest, macos-latest]

runs-on: ${{ matrix.os }}
# runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3

- name: Setup NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# steps:
# - uses: actions/checkout@v3

- name: Perform regular checks
run: |
npm install
npm run format:check
npm run lint
npm run test:unit
npm run build
npm install --prefix examples
npm run --prefix examples lint:ts
# - name: Setup NodeJS ${{ matrix.node-version }}
# uses: actions/setup-node@v3
# with:
# node-version: ${{ matrix.node-version }}

# - name: Perform regular checks
# run: |
# npm install
# npm run format:check
# npm run lint
# npm run test:unit
# npm run build
# npm install --prefix examples
# npm run --prefix examples lint:ts

run-integration-and-e2e-tests:
name: Run integration and E2E tests
Expand Down

0 comments on commit c17f207

Please sign in to comment.