diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ea784f..1c45c8d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,6 +2,9 @@ name: CI on: [push, pull_request] +env: + NODE_OPTIONS: "--openssl-legacy-provider" + jobs: build: runs-on: ubuntu-latest @@ -20,7 +23,7 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up ruby uses: ruby/setup-ruby@v1 with: @@ -29,7 +32,7 @@ jobs: - name: Set up node uses: actions/setup-node@v3 with: - node-version: 16.18.1 + node-version: 20 cache: "yarn" - name: Install Yarn dependencies run: |