diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6b2e444..c3d35b5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,24 +5,24 @@ on: paths-ignore: - 'docs/**' - 'README.md' - branches: + branches: - master push: paths-ignore: - 'docs/**' - 'README.md' - branches: + branches: - master jobs: build: - + runs-on: ${{ matrix.os }} strategy: matrix: os: [windows-latest, ubuntu-latest, macos-latest] - node-version: [12.x, 14.x, 16.x, 18.x] + node-version: [18.x, 20.x] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 1d92ee1..d0275e3 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -5,7 +5,7 @@ on: paths-ignore: - 'docs/**' - 'README.md' - branches: + branches: - master jobs: @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: '12' + node-version: '20' - run: npm install - name: Code Coverage uses: paambaati/codeclimate-action@v2.4.0 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7c5cd16..7845e47 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: # Setup .npmrc file to publish to npm - uses: actions/setup-node@v2 with: - node-version: '12.x' + node-version: '20.x' registry-url: 'https://registry.npmjs.org' - run: npm install - run: npm test