Skip to content

Commit a11c8b8

Browse files
committed
ci workflows
1 parent d048051 commit a11c8b8

File tree

7 files changed

+18
-8
lines changed

7 files changed

+18
-8
lines changed

.github/workflows/core.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,14 @@ on:
1010
jobs:
1111
test:
1212
name: ${{ matrix.config.kind }} ${{ matrix.config.os }}
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-latest-4-cores
1414
environment: CI
1515
strategy:
1616
matrix:
1717
deno-version: [1.44.4]
18+
permissions:
19+
contents: read
20+
id-token: write
1821

1922
steps:
2023
- name: Git Checkout Core

.github/workflows/jetstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
test:
1212
name: ${{ matrix.config.kind }} ${{ matrix.config.os }}
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-latest-4-cores
1414
environment: CI
1515
strategy:
1616
matrix:

.github/workflows/kv.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
test:
1212
name: ${{ matrix.config.kind }} ${{ matrix.config.os }}
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-latest-4-cores
1414
environment: CI
1515
strategy:
1616
matrix:

.github/workflows/obj.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
test:
1212
name: ${{ matrix.config.kind }} ${{ matrix.config.os }}
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-latest-4-cores
1414
environment: CI
1515
strategy:
1616
matrix:

.github/workflows/services.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
test:
1212
name: ${{ matrix.config.kind }} ${{ matrix.config.os }}
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-latest-4-cores
1414
environment: CI
1515
strategy:
1616
matrix:

.github/workflows/test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,7 @@ jobs:
5555
CI: true
5656
NGS_CI_USER: ${{ secrets.NGS_CI_USER }}
5757
run: |
58-
deno test --allow-all --parallel --reload --quiet --coverage=./coverage core/tests/ jetstream/tests kv/tests/ obj/tests/ services/tests/
59-
deno test --allow-all --parallel --reload --quiet --unsafely-ignore-certificate-errors --coverage=./coverage core/unsafe_tests/
60-
58+
deno task test
6159
6260
- name: Build nats.js
6361
run: deno bundle --unstable transport-deno/src/connect.ts nats.js

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@
44
![Test NATS.deno](https://github.com/nats-io/nats.deno/workflows/NATS.deno/badge.svg)
55
[![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)
66

7+
8+
[!WARNING]
9+
This project is still working in progress and not yet released. Currently supported Javascript are
10+
- [nats.deno](https://github.com/nats-io/nats.deno)
11+
- [nats.js](https://github.com/nats-io/nats.js)
12+
- [nats.ws](https://github.com/nats-io/nats.ws)
13+
14+
15+
716
Welcome to the new NATS.js repository! Beginning with the v3 release of the
817
JavaScript clients, the NATS.js repository reorganizes the NATS JavaScript
918
client libraries into a formal mono-repo.

0 commit comments

Comments
 (0)