Skip to content

Commit

Permalink
ci workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
aricart committed Jul 2, 2024
1 parent d048051 commit a11c8b8
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 8 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@ on:
jobs:
test:
name: ${{ matrix.config.kind }} ${{ matrix.config.os }}
runs-on: ubuntu-latest
runs-on: ubuntu-latest-4-cores
environment: CI
strategy:
matrix:
deno-version: [1.44.4]
permissions:
contents: read
id-token: write

steps:
- name: Git Checkout Core
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jetstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
test:
name: ${{ matrix.config.kind }} ${{ matrix.config.os }}
runs-on: ubuntu-latest
runs-on: ubuntu-latest-4-cores
environment: CI
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
test:
name: ${{ matrix.config.kind }} ${{ matrix.config.os }}
runs-on: ubuntu-latest
runs-on: ubuntu-latest-4-cores
environment: CI
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/obj.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
test:
name: ${{ matrix.config.kind }} ${{ matrix.config.os }}
runs-on: ubuntu-latest
runs-on: ubuntu-latest-4-cores
environment: CI
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
test:
name: ${{ matrix.config.kind }} ${{ matrix.config.os }}
runs-on: ubuntu-latest
runs-on: ubuntu-latest-4-cores
environment: CI
strategy:
matrix:
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,7 @@ jobs:
CI: true
NGS_CI_USER: ${{ secrets.NGS_CI_USER }}
run: |
deno test --allow-all --parallel --reload --quiet --coverage=./coverage core/tests/ jetstream/tests kv/tests/ obj/tests/ services/tests/
deno test --allow-all --parallel --reload --quiet --unsafely-ignore-certificate-errors --coverage=./coverage core/unsafe_tests/
deno task test
- name: Build nats.js
run: deno bundle --unstable transport-deno/src/connect.ts nats.js
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@
![Test NATS.deno](https://github.com/nats-io/nats.deno/workflows/NATS.deno/badge.svg)
[![Coverage Status](https://coveralls.io/repos/github/nats-io/nats.deno/badge.svg?branch=main)](https://coveralls.io/github/nats-io/nats.deno?branch=main)


[!WARNING]
This project is still working in progress and not yet released. Currently supported Javascript are
- [nats.deno](https://github.com/nats-io/nats.deno)
- [nats.js](https://github.com/nats-io/nats.js)
- [nats.ws](https://github.com/nats-io/nats.ws)



Welcome to the new NATS.js repository! Beginning with the v3 release of the
JavaScript clients, the NATS.js repository reorganizes the NATS JavaScript
client libraries into a formal mono-repo.
Expand Down

0 comments on commit a11c8b8

Please sign in to comment.