Skip to content

Commit

Permalink
ci: Changing from Circle-CI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
itssimple committed Jun 15, 2020
1 parent 4863b0a commit 2098118
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 28 deletions.
28 changes: 0 additions & 28 deletions .circleci/config.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI
on:
push:
branches: [master]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Download source
uses: actions/checkout@v1
with:
fetch-depth: 1
submodules: true
lfs: true
- name: Get Node 10.x
uses: actions/setup-node@v1
with:
node-version: 10.x
- name: Build source files
shell: bash
run: |
yarn --frozen-lockfile
yarn build

0 comments on commit 2098118

Please sign in to comment.