Skip to content

Commit

Permalink
build: updated to use node 18
Browse files Browse the repository at this point in the history
  • Loading branch information
dcpesses committed Feb 23, 2024
1 parent 58298e2 commit 3465575
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
buildAndTest:
name: Build & Test
runs-on: ubuntu-latest
container: node:18
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -55,12 +56,16 @@ jobs:
name: Coverage Analysis
needs: buildAndTest
runs-on: ubuntu-latest
container: node:18
steps:
# Download coverage artifacts
- uses: actions/download-artifact@v4
with:
name: coverage

- name: Debug Environment Variables
run: env

- name: Workaround for codecov/feedback#263
run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
Expand All @@ -78,6 +83,7 @@ jobs:
if: github.ref == 'refs/heads/main'
needs: buildAndTest
runs-on: ubuntu-latest
container: node:18
permissions:
contents: write
# Manual deployment
Expand Down

0 comments on commit 3465575

Please sign in to comment.