Skip to content

Commit

Permalink
chore: switching to node22 and --import tsx goodness
Browse files Browse the repository at this point in the history
  • Loading branch information
lmammino committed May 13, 2024
1 parent de689d9 commit 61a5f2e
Show file tree
Hide file tree
Showing 4 changed files with 688 additions and 276 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ jobs:
- name: Setup Pages
uses: actions/configure-pages@v2

- name: Use Node 18
- name: Use Node 22
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 22.x

- name: Use cached node_modules
uses: actions/cache@v3
with:
path: node_modules
key: nodeModules-18-${{ hashFiles('**/package-lock.json') }}
key: nodeModules-22-${{ hashFiles('**/package-lock.json') }}

- name: Install dependencies
run: npm install
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Use Node 18
- name: Use Node 22
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 22.x

- name: Use cached node_modules
uses: actions/cache@v3
with:
path: node_modules
key: nodeModules-18-${{ hashFiles('**/package-lock.json') }}
key: nodeModules-22-${{ hashFiles('**/package-lock.json') }}

- name: Install dependencies
run: npm install
Expand Down
Loading

0 comments on commit 61a5f2e

Please sign in to comment.