Skip to content

Commit

Permalink
Merge pull request #806 from near/main
Browse files Browse the repository at this point in the history
Prod Release 18/06/24
  • Loading branch information
morgsmccauley authored Jun 18, 2024
2 parents 1c446be + 5462ec5 commit 78cf5ae
Show file tree
Hide file tree
Showing 77 changed files with 5,121 additions and 3,050 deletions.
81 changes: 81 additions & 0 deletions .github/workflows/frontend-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
name: frontend CI

on:
pull_request:
paths:
- "frontend/**"

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.x'

- name: Install Node Dependencies
run: npm install
working-directory: ./frontend

- name: Test
run: npm test
working-directory: ./frontend
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.x'

- name: Install Node Dependencies
run: npm install
working-directory: ./frontend

- name: Lint
run: npm run lint
working-directory: ./frontend
type-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.x'

- name: Install Node Dependencies
run: npm install
working-directory: ./frontend

- name: Type Check
run: npm run type-check
working-directory: ./frontend
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.x'

- name: Install Node Dependencies
run: npm install
working-directory: ./frontend

- name: Build
run: npm run build
working-directory: ./frontend
2 changes: 2 additions & 0 deletions block-streamer/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion block-streamer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ edition = "2021"
[dependencies]
actix-web = "4.5.1"
anyhow = "1.0.57"
async-stream = "0.3.5"
async-trait = "0.1.74"
aws-config = { version = "1.1.3", features = ["behavior-version-latest"] }
aws-sdk-s3 = "1.13.0"
base64 = "0.22.1"
borsh = "0.10.2"
cached = "0.49.3"
chrono = "0.4.25"
Expand All @@ -20,6 +22,7 @@ near-lake-framework = "0.7.8"
prometheus = "0.13.3"
prost = "0.12.3"
redis = { version = "0.21.5", features = ["tokio-comp", "connection-manager"] }
regex = "1.10.4"
reqwest = { version = "^0.11.0", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.55"
Expand All @@ -33,7 +36,6 @@ tonic = "0.10.2"
wildmatch = "2.1.1"

registry-types = { path = "../registry/types" }
base64 = "0.22.1"

[build-dependencies]
tonic-build = "0.10"
Expand Down
Loading

0 comments on commit 78cf5ae

Please sign in to comment.