Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ochaloup committed Nov 29, 2024
1 parent fea572b commit 32fc893
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 8 deletions.
25 changes: 18 additions & 7 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Integration tests

on: [push]
on:
push:
branches: [ main ]

jobs:
build:
Expand Down

0 comments on commit 32fc893

Please sign in to comment.