Skip to content

Commit

Permalink
Move v2 files
Browse files Browse the repository at this point in the history
  • Loading branch information
the1812 committed Oct 26, 2021
1 parent 31b1734 commit 9f45220
Show file tree
Hide file tree
Showing 1,307 changed files with 55,291 additions and 46,656 deletions.
17 changes: 0 additions & 17 deletions .babelrc

This file was deleted.

63 changes: 63 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# This is a basic workflow to help you get started with Actions

name: Build

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the v2 branch
on:
push:
branches: [ v2 ]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
with:
fetch-depth: '0'

- name: Install dependencies
uses: bahmutov/npm-install@v1

- name: Type check
run: yarn type

- name: ESLint check
run: yarn lint

- name: Build core
run: yarn build-core

- name: Build features
run: |
cd registry
yarn
cd ../
yarn build-features
- name: Git commit
id: commit
run: |
git config --local user.email "[email protected]"
git config --local user.name "the1812"
git config --global core.autocrlf true
git config --global core.safecrlf false
git commit -m "CI build" -a
continue-on-error: true

- name: Git push
uses: ad-m/github-push-action@master
if: ${{ steps.commit.outcome == 'success' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: 'v2'

- name: Log
if: ${{ steps.commit.outcome != 'success' }}
run: echo Nothing to commit.
37 changes: 37 additions & 0 deletions .github/workflows/pull-request-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# This is a basic workflow to help you get started with Actions

name: Pull Request Check

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the v2 branch
on: [pull_request]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
check:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: Install dependencies
uses: bahmutov/npm-install@v1

- name: Type check
run: yarn type

- name: ESLint check
run: yarn lint

- name: Build core
run: yarn build-core

- name: Build features
run: yarn build-features

- name: Log
run: echo Check complete.
Loading

0 comments on commit 9f45220

Please sign in to comment.