mirror of
https://github.com/chatmail/core.git
synced 2026-04-06 15:42:10 +03:00
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4 to 5. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
name: JSON-RPC API Test
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
permissions: {}
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
RUST_MIN_STACK: "8388608"
|
|
|
|
jobs:
|
|
build_and_test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
show-progress: false
|
|
persist-credentials: false
|
|
- name: Use Node.js 18.x
|
|
uses: actions/setup-node@v5
|
|
with:
|
|
node-version: 18.x
|
|
- name: Add Rust cache
|
|
uses: Swatinem/rust-cache@v2
|
|
- name: npm install
|
|
working-directory: deltachat-jsonrpc/typescript
|
|
run: npm install
|
|
- name: Build TypeScript, run Rust tests, generate bindings
|
|
working-directory: deltachat-jsonrpc/typescript
|
|
run: npm run build
|
|
- name: Run integration tests
|
|
working-directory: deltachat-jsonrpc/typescript
|
|
run: npm run test
|
|
env:
|
|
CHATMAIL_DOMAIN: ${{ vars.CHATMAIL_DOMAIN }}
|
|
- name: Run linter
|
|
working-directory: deltachat-jsonrpc/typescript
|
|
run: npm run prettier:check
|