Skip to content

Commit

Permalink
miscellaneous cleanup in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pmcelhaney committed Aug 30, 2023
1 parent 543a78f commit 4cddd74
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coveralls.yaml
Expand Up @@ -9,10 +9,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup Node.js 16.x
- name: Setup Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: yarn

- name: install, run tests
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/mutation-testing.yaml
Expand Up @@ -5,7 +5,7 @@ on:
push:
branches:
- main

jobs:
ci-checks:
name: Mutation Testing
Expand All @@ -17,7 +17,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: yarn
id: setup-node
- name: Get Node Version
Expand All @@ -33,4 +33,4 @@ jobs:
- name: Run Stryker
run: yarn test:mutants
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Expand Up @@ -15,10 +15,10 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v3

- name: Setup Node.js 16.x
- name: Setup Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: yarn

- name: Get Node Version
Expand Down

0 comments on commit 4cddd74

Please sign in to comment.