Skip to content

merge queue: embarking master (4c561e8) and [#49 + #50] together #111

merge queue: embarking master (4c561e8) and [#49 + #50] together

merge queue: embarking master (4c561e8) and [#49 + #50] together #111

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions: read-all
jobs:
build:
name: Perform check
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
if: github.repository == 'FajarKim/node-openssl-enc'
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Node
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install package
run: npm install
- name: Testing code
run: |
export NODE_OPTIONS=--openssl-legacy-provider
npm test