Skip to content

Commit

Permalink
refactor: removed Node.js 16.x since it's incompatible with @size-lim…
Browse files Browse the repository at this point in the history
…it/esbuild
  • Loading branch information
JustPowerful committed Oct 23, 2024
1 parent b86b984 commit 5c961a6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Updated Node versions to newer, ARM64-compatible versions
node: ['16.x', '18.x', '20.x']
# Only using Node versions compatible with @size-limit/esbuild
node: ['18.x', '20.x']
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4 # Updated to v4

- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4 # Updated to v4
with:
node-version: ${{ matrix.node }}

Expand Down

0 comments on commit 5c961a6

Please sign in to comment.