diff --git a/.github/workflows/gh-pages-deploy.yml b/.github/workflows/gh-pages-deploy.yml index 6c4201fc..13148a23 100644 --- a/.github/workflows/gh-pages-deploy.yml +++ b/.github/workflows/gh-pages-deploy.yml @@ -1,7 +1,7 @@ name: GH Pages Deploy on: - workflow_dispatch: + workflow_dispatch: push: branches: - master diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 20e200dc..5259efb6 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,12 +9,12 @@ jobs: strategy: matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [14.x, 16.x, 18.x, 20.x] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: npm install, build, and test @@ -29,7 +29,7 @@ jobs: JOB_CONTEXT: ${{ toJson(matrix) }} run: echo "$JOB_CONTEXT" - name: Coveralls - if: matrix.node-version == '14.x' + if: matrix.node-version == '20.x' uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }}