diff --git a/.github/workflows/build-unit-tests.yml b/.github/workflows/build-unit-tests.yml index b0c8e64..291ad13 100644 --- a/.github/workflows/build-unit-tests.yml +++ b/.github/workflows/build-unit-tests.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [lts/hydrogen] + node-version: [lts/iron] steps: - uses: actions/checkout@v2 @@ -21,7 +21,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - # 2. Restore npm cache manually + # 2. Restore npm cache manually - name: Restore npm cache uses: actions/cache@v3 id: npm-cache diff --git a/.github/workflows/generateDocs.yml b/.github/workflows/generateDocs.yml index 57b80fe..7371365 100644 --- a/.github/workflows/generateDocs.yml +++ b/.github/workflows/generateDocs.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: - node-version: [lts/hydrogen] + node-version: [lts/iron] steps: - name: Checkout @@ -20,9 +20,10 @@ jobs: - name: Setup Node uses: actions/setup-node@v2 with: - node-version: ${{ matrix.node-version }} + node-version: + ${{ matrix.node-version }} - # 2. Restore npm cache manually + # 2. Restore npm cache manually - name: Restore npm cache uses: actions/cache@v3 id: npm-cache @@ -50,4 +51,3 @@ jobs: publish_branch: gh-pages publish_dir: ./docs cname: adapter.sasjs.io - diff --git a/.github/workflows/server-tests.yml b/.github/workflows/server-tests.yml index 2d0e2f0..3907f38 100644 --- a/.github/workflows/server-tests.yml +++ b/.github/workflows/server-tests.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [lts/hydrogen] + node-version: [lts/iron] steps: - uses: actions/checkout@v2