-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: add composite action to install dependencies * ci: use concurrent jobs for pr checks workflow and use cached dependencies * fix: remove swipe on feature carousel * feat: update site description * feat: add attribution to header image * feat: add agora labs banner logo to the footer * feat: add new concept images * feat: add attribution to footer
- Loading branch information
1 parent
80b4edc
commit 1ebc79a
Showing
19 changed files
with
322 additions
and
379 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: "Use Dependencies" | ||
|
||
description: "Checks if the dependencies have been cached with the hash of the yarn.lock file." | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: "🔧 Setup" | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 'lts/*' | ||
cache: 'yarn' | ||
- name: "💾 Cache dependencies" | ||
uses: actions/cache@v3 | ||
id: cache-dependencies | ||
with: | ||
path: node_modules | ||
key: ${{ runner.os }}-node-${{ hashFiles('yarn.lock') }} | ||
- name: "📦 Install" | ||
if: steps.cache-dependencies.outputs.cache-hit != 'true' | ||
run: yarn install --ignore-scripts | ||
shell: bash |
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: "Pull Request Checks" | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
## | ||
# install | ||
## | ||
|
||
install: | ||
name: "Install" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "🛎 Checkout" | ||
uses: actions/checkout@v3 | ||
- name: "🔧 Setup" | ||
uses: ./.github/actions/use-dependencies | ||
|
||
## | ||
# lint, build documentation, build package and test | ||
## | ||
|
||
lint: | ||
name: "Lint" | ||
needs: install | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "🛎 Checkout" | ||
uses: actions/checkout@v3 | ||
- name: "🔧 Setup" | ||
uses: ./.github/actions/use-dependencies | ||
- name: "👕 Lint" | ||
run: yarn lint | ||
|
||
build: | ||
name: "Build" | ||
needs: install | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "🛎 Checkout" | ||
uses: actions/checkout@v3 | ||
- name: "🔧 Setup" | ||
uses: ./.github/actions/use-dependencies | ||
- name: "🏗️ Build" | ||
run: yarn build | ||
|
||
test: | ||
name: "Test" | ||
needs: install | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "🛎 Checkout" | ||
uses: actions/checkout@v3 | ||
- name: "🔧 Setup" | ||
uses: ./.github/actions/use-dependencies | ||
- name: "🧪 Test" | ||
run: yarn test |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Release | ||
name: "Release" | ||
|
||
on: | ||
push: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
kieran: | ||
name: Kieran O'Neill | ||
title: Current Custodian of Agora Labs | ||
title: Builder at Agora Labs | ||
url: https://github.com/kieranroneill | ||
image_url: https://github.com/kieranroneill.png |
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
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
Oops, something went wrong.