Skip to content

Bump braces from 3.0.2 to 3.0.3 #193

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #193

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
analyze:
name: Analyze CodeQL
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: javascript-typescript
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3