nodeci #31
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: nats-core release | |
on: | |
push: | |
paths: | |
- 'core/**' | |
- '.github/workflows/core.yml' | |
tags: [ 'core/*' ] | |
branches: | |
- '*' | |
jobs: | |
test: | |
name: test core with released dependencies | |
runs-on: ubuntu-latest-4-cores | |
environment: CI | |
strategy: | |
matrix: | |
deno-version: [1.x.x] | |
node-version: [ 22.x ] | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- name: Git Checkout Core | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Use Deno Version ${{ matrix.deno-version }} | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: ${{ matrix.deno-version }} | |
- name: Install nats-server | |
uses: aricart/[email protected] | |
with: | |
repo: nats-io/nats-server | |
name: nats-server | |
cache: true | |
- name: Lint Deno Module | |
working-directory: core | |
run: | | |
deno fmt --check | |
deno lint | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Test Deno Module | |
working-directory: core | |
env: | |
TMPDIR: ${{ runner.temp }} | |
CI: true | |
NGS_CI_USER: ${{ secrets.NGS_CI_USER }} | |
run: | | |
deno task test | |
- name: Build NPM core bundle | |
working-directory: core | |
env: | |
CI: true | |
run: | | |
npm ci | |
npm run prepack | |
npm link | |
- name: Test Node Transport with local nats-core | |
working-directory: transport-node | |
env: | |
CI: true | |
run: | | |
npm ci | |
npm run prepack | |
npm link @nats-io/nats-core | |
npm test |