Skip to content

Bump up checkout and setup-node version #190

Bump up checkout and setup-node version

Bump up checkout and setup-node version #190

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
testing:
name: Testing on Node v${{ matrix.node }} / CRYPTO_PROVIDER_ARG_REQUIRED=${{ matrix.crypto_arg_required }}
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 20, 18 ]
crypto_arg_required: [ true, false ]
steps:
- name: Checking out
uses: actions/checkout@v4
- name: Use Node.js v${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install NPM dependencies
run: npm ci
- name: Modify buildSettings.ts for testing
run: sed -i "s/CRYPTO_PROVIDER_ARG_REQUIRED = false/CRYPTO_PROVIDER_ARG_REQUIRED = ${{ matrix.crypto_arg_required }}/g" src/buildSettings.ts
- name: Check lint
run: npm run lint
- name: Check build
run: npm run build
- name: Check build others
if: matrix.crypto_arg_required == false
run: npm run build:others
- name: Run NPM tests
run: npm test
- name: Check examples
if: matrix.crypto_arg_required == false
run: |
npm run examples
npm run examples:facade