Skip to content

Commit

Permalink
Migrating to Github Actions (#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
anandtiwary authored Mar 20, 2021
1 parent 926996f commit 4300a56
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 13 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: build-and-test
on:
pull_request:
push:
branches:
- master
jobs:
yarn-install:
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v2

- id: cache
name: Cache node modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('yarn.lock') }}

- name: Yarn Install
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install
build:
runs-on: ubuntu-20.04
needs: [yarn-install]
steps:
- name: Check out code
uses: actions/checkout@v2

- name: Cache node modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('yarn.lock') }}

- name: Build
run: yarn build

- name: Archive build artifacts
uses: actions/upload-artifact@v2
with:
name: dist
path: dist
test:
runs-on: ubuntu-20.04
needs: [yarn-install]
steps:
- name: Check out code
uses: actions/checkout@v2

- name: Restore node modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('yarn.lock') }}

- name: Test
run: yarn test:ci
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

0 comments on commit 4300a56

Please sign in to comment.