diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c21f27b..3662e54 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,21 +6,24 @@ on: jobs: lint: runs-on: ubuntu-latest + timeout-minutes: 5 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: npm i - run: npm run lint typecheck: runs-on: ubuntu-latest + timeout-minutes: 5 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: npm i - run: npx tsc test: runs-on: ubuntu-latest + timeout-minutes: 5 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: npm i - run: npm run coverage diff --git a/package.json b/package.json index e3f33f8..9694727 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hyparquet-writer", - "version": "0.10.0", + "version": "0.10.1", "description": "Parquet file writer for JavaScript", "author": "Hyperparam", "homepage": "https://hyperparam.app",