Skip to content

Bump tsx and esbuild versions #61

Bump tsx and esbuild versions

Bump tsx and esbuild versions #61

Workflow file for this run

---
name: Node.js package
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ["20.x", "21.x"]
steps:
- uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn test
...