diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 09e1d4c..0a254af 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -9,22 +9,33 @@ jobs: strategy: fail-fast: true matrix: - node-version: [16] + node-version: [18] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Install pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v4 with: - version: 7 - - name: Install, build and test + version: 9 + + - name: 🤗 Install dependencies + run: pnpm install + + - name: 🥸 Show me yourself + run: | + set -x + pnpm --version + node --version + pnpm tsc --version + npx tsc --version + + - name: Build and test timeout-minutes: 5 run: | - pnpm install pnpm build pnpm test env: diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index c62deed..58990c8 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -1,6 +1,8 @@ name: Integration tests -on: [push] +on: + push: + branches: [ main ] jobs: build: