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 9a2b762
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
23 changes: 17 additions & 6 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,30 @@ jobs:
node-version: [16]

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 9a2b762

Please sign in to comment.