Skip to content

Commit

Permalink
chore(deps): update actions/upload-artifact action to v4 (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kesin11 authored Dec 17, 2023
2 parents 290d773 + 0e377ca commit 1bd38a4
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
test:
strategy:
matrix:
container:
# - "node:current"
- "node:lts"
- "node:20"
container_tag:
# - "current"
- "lts"
- "20"
fail-fast: false

runs-on: ubuntu-latest
container:
image: ${{ matrix.container }}
image: "node:${{ matrix.container_tag }}"

steps:
- uses: actions/checkout@v4
Expand All @@ -28,23 +28,23 @@ jobs:
npm -v
- run: npm ci
- run: npm run test
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: junit test reports
name: "junit test reports node ${{ matrix.container_tag }}"
path: junit

cli_test:
strategy:
matrix:
container:
# - "node:current"
- "node:lts"
- "node:20"
container_tag:
# - "current"
- "lts"
- "20"
fail-fast: false

runs-on: ubuntu-latest
container:
image: ${{ matrix.container }}
image: "node:${{ matrix.container_tag }}"

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 1bd38a4

Please sign in to comment.