Skip to content

build(deps): bump actions/checkout from 4.1.4 to 4.1.5 (#35) #83

build(deps): bump actions/checkout from 4.1.4 to 4.1.5 (#35)

build(deps): bump actions/checkout from 4.1.4 to 4.1.5 (#35) #83

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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Setup Node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
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