Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/pr-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'

cache: 'pnpm'

- name: Install dependencies
run: npm ci
run: pnpm install --frozen-lockfile

- name: Run checks
run: npm run check
run: pnpm check

- name: Run Tests
run: npm test
run: pnpm test

- name: Compile Typescript
run: npm run build
run: pnpm build

- name: Run mabl tests against deployment
id: mabl-test-deployment
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/push-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'

cache: 'pnpm'

- name: Install dependencies
run: npm ci
run: pnpm install --frozen-lockfile

- name: Run checks
run: npm run check
run: pnpm check

- name: Run Tests
run: npm test
run: pnpm test

- name: Compile Typescript
run: npm run build
run: pnpm build

- name: Run mabl tests against deployment
id: mabl-test-deployment
Expand All @@ -44,4 +46,3 @@ jobs:
http-headers: |
X-Test-Header-1: 1234
X-Test-Header-2: 5678

2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Releases can then be built from that branch by running

```bash
# Compile release
npm run release
pnpm release

# Commit the built release files
git commit -m "<version, e.g. v1.4> release"
Expand Down
Loading
Loading