Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add README #1

Merged
merged 2 commits into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 24 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
name: CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
test:
api-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -20,4 +22,24 @@ jobs:
run: cargo clippy --all-targets --all-features -- -Dclippy::all -D warnings
- name: Run tests
working-directory: ./api
run: cargo test --verbose
run: cargo test --verbose

webapp-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install packages
working-directory: ./webapp
run: npm ci
- name: Typecheck
working-directory: ./webapp
run: npm run typecheck
- name: Lint
working-directory: ./webapp
run: npm run lint
- name: Format
working-directory: ./webapp
run: npm run formatcheck
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Remix App with Rust gRPC backend

This is an example project of a Remix application
talking to Rust backend using gRPC.
Loading