Skip to content

Commit

Permalink
Merge pull request #422 from communitybridge/feat/circleci-to-gha
Browse files Browse the repository at this point in the history
Github Migration
  • Loading branch information
csavulalfx authored Mar 14, 2024
2 parents 9d3cdce + 8972429 commit 78edba5
Show file tree
Hide file tree
Showing 22 changed files with 2,266 additions and 327 deletions.
272 changes: 0 additions & 272 deletions .circleci/config.yml

This file was deleted.

49 changes: 49 additions & 0 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Copyright The Linux Foundation and each contributor to LFX.
# SPDX-License-Identifier: MIT

name: Build

on:
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
environment: dev
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 16
cache: yarn
cache-dependency-path: "yarn.lock"

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }}
aws-region: us-east-1
role-duration-seconds: 900

- name: Install Top Level Dependencies
run: yarn install

- name: Install Edge Dependencies
run: yarn install

- name: Build dev
run: yarn build:dev

- name: Build Edge
run: |
pushd edge
yarn build
popd
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down
Loading

0 comments on commit 78edba5

Please sign in to comment.