Skip to content
Closed
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
11 changes: 7 additions & 4 deletions .github/workflows/reviewstack.dev-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,22 @@ on:
jobs:
deploy:
runs-on: ubuntu-22.04
# Our build container already has Node, Yarn, and Python installed.
container:
image: ${{ format('ghcr.io/{0}/build_ubuntu_22_04:latest', github.repository) }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Checkout Code
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install Yarn
run: npm install -g yarn
- name: Grant Access
run: git config --global --add safe.directory "$PWD"
- name: Install dependencies
working-directory: ./eden/contrib/
run: yarn install --prefer-offline
run: yarn install

# Build codegen and then do some sanity checks so we don't push the site
# when the tests are broken.
Expand Down
Loading