Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
ci: use GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed Aug 21, 2019
1 parent c1fd6fa commit de496b8
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 55 deletions.
54 changes: 0 additions & 54 deletions .circleci/config.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/test-and-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Test and Release

on: push

jobs:
tests:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Install latest npm
run: sudo npm install -g npm@
- name: Install dependencies
run: npm ci --no-audit
- name: Test
run: npm test
- name: relase
continue-on-error: true
env:
GK_LOCK_DEFAULT_BRANCH: saga
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_USERNAME: ${{ secrets.GH_USERNAME }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm i --no-save semantic-release@next
npx semantic-release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AWS-based implementation of _Bifravst :rainbow:_

[![CircleCI](https://circleci.com/gh/bifravst/aws/tree/saga.svg?style=svg)](https://circleci.com/gh/bifravst/aws/tree/saga)
[![GitHub Actions](https://github.com/bifravst/aws/workflows/Test%20and%20Release/badge.svg)](https://github.com/bifravst/aws/actions)
[![Greenkeeper badge](https://badges.greenkeeper.io/bifravst/aws.svg)](https://greenkeeper.io/)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
Expand Down

0 comments on commit de496b8

Please sign in to comment.