Skip to content

Shuffle test order

Shuffle test order #48

Workflow file for this run

name: PR
on:
pull_request:
paths:
- '**'
- '!**/*.md'
- '!**/*.yml'
- '!**/*.yaml'
- '.github/workflows/pr.yml'
concurrency:
group: pr-${{ github.ref }}
cancel-in-progress: true
permissions:
packages: read
jobs:
vs-ponyc-release:
name: Test against recent ponyc release
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/shared-docker-ci-standard-builder-with-libressl-4.2.1:release
steps:
- uses: actions/checkout@v6.0.2
- name: Test
run: make test ssl=libressl config=debug
js-client:
name: Test JS client
runs-on: ubuntu-latest
defaults:
run:
working-directory: client
steps:
- uses: actions/checkout@v6.0.2
- uses: actions/setup-node@v6.3.0
with:
node-version: '22'
- run: npm install
- run: npm test
- run: npm run build