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

Move build workflow from CircleCI to GitHub Actions #1974

Merged
merged 9 commits into from
May 2, 2022
Merged
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
744 changes: 1 addition & 743 deletions .circleci/config.yml

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions .github/actions/node/12/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: Node 12
runs:
using: composite
steps:
- uses: actions/setup-node@v3
with:
node-version: '12'
7 changes: 7 additions & 0 deletions .github/actions/node/14/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: Node 14
runs:
using: composite
steps:
- uses: actions/setup-node@v3
with:
node-version: '14'
7 changes: 7 additions & 0 deletions .github/actions/node/16/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: Node 16
runs:
using: composite
steps:
- uses: actions/setup-node@v3
with:
node-version: '16'
7 changes: 7 additions & 0 deletions .github/actions/node/17/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: Node 17
runs:
using: composite
steps:
- uses: actions/setup-node@v3
with:
node-version: '17'
7 changes: 7 additions & 0 deletions .github/actions/node/latest/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: Node 17
runs:
using: composite
steps:
- uses: actions/setup-node@v3
with:
node-version: '17'
7 changes: 7 additions & 0 deletions .github/actions/node/oldest/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: Node 12
runs:
using: composite
steps:
- uses: actions/setup-node@v3
with:
node-version: '12'
7 changes: 7 additions & 0 deletions .github/actions/node/setup/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: Node Setup
runs:
using: composite
steps:
- uses: actions/setup-node@v3
with:
cache: yarn
23 changes: 23 additions & 0 deletions .github/workflows/core.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Core

on:
push:
schedule:
- cron: '0 4 * * *'

concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true

jobs:
shimmer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/node/setup
- run: yarn install
- uses: ./.github/actions/node/oldest
- run: yarn test:shimmer:ci
- uses: ./.github/actions/node/latest
- run: yarn test:shimmer:ci
- run: yarn codecov
Loading