chore(ci): switch to github actions

master
pooya parsa 2020-04-13 21:04:19 +02:00 committed by Pooya Parsa
parent 5c693a04b9
commit 6205fdaa5e
2 changed files with 45 additions and 38 deletions

View File

@ -1,38 +0,0 @@
version: 2
jobs:
build:
docker:
- image: circleci/node
steps:
# Checkout repository
- checkout
# Restore cache
- restore_cache:
key: yarn-cache-{{ checksum "yarn.lock" }}
# Install dependencies
- run:
name: Install Dependencies
command: NODE_ENV=dev yarn
# Keep cache
- save_cache:
key: yarn-cache-{{ checksum "yarn.lock" }}
paths:
- "node_modules"
# Lint
- run:
name: Lint
command: yarn lint
# Tests
- run:
name: Tests
command: yarn jest
# Coverage
- run:
name: Coverage
command: yarn codecov

45
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,45 @@
name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [12]
steps:
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: checkout
uses: actions/checkout@master
- name: cache node_modules
uses: actions/cache@v1
with:
path: node_modules
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/yarn.lock')) }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn
- name: Lint
run: yarn lint
- name: Test
run: yarn jest
- name: Coverage
uses: codecov/codecov-action@v1