Skip to content

build(deps): bump actions/setup-node from 4.0.3 to 4.0.4 (#46) #104

build(deps): bump actions/setup-node from 4.0.3 to 4.0.4 (#46)

build(deps): bump actions/setup-node from 4.0.3 to 4.0.4 (#46) #104

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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Node
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
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