Skip to content

Commit

Permalink
chore: removing travis stuff (#49)
Browse files Browse the repository at this point in the history
* chore: removing travis stuff

* chore: additional fixes

* chore: cannot use till after 8 is gone

* chore: resolving name

* chore: adding badge

Co-authored-by: mrsteele <[email protected]>
  • Loading branch information
mrsteele and mrsteele authored Feb 22, 2021
1 parent d14a885 commit ebbbd8e
Show file tree
Hide file tree
Showing 4 changed files with 103 additions and 23 deletions.
101 changes: 101 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
name: Main
on: push

# TODO - Need to not repeat the checkout and setup node steps...

jobs:
# Set the job key. The key is displayed as the job name
# when a job name is not provided
lint:
runs-on: ubuntu-latest
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 12
- uses: actions/checkout@v2
- name: Install dependencies
run: npm i
- name: Check Security
run: npm audit
- uses: goto-bus-stop/standard-action@v1
with:
# optionally select a different, standard-like linter
# linter: semistandard

# optionally select a different eslint formatter for the log output, default 'stylish'
# formatter: tap

# limit the files to lint, default '**/*.js'
# files: src/*.js

# show errors in the the github diff UI
annotate: true

# Allow the action to add lint errors to the github diff UI
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
test:
name: Test ${{ matrix.node }}
runs-on: ubuntu-18.04
strategy:
matrix:
node: [ '8', '9', '10', '12' ]
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm i
- name: Test
run: npm t
release:
name: Release
runs-on: ubuntu-18.04
needs: [
test,
lint
]
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 12
- name: Install Dependencies
run: npm i
- name: 🚀 Release
uses: cycjimmy/semantic-release-action@v2
with:
semantic_version: 17
branches: |
[
'master'
]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ A dotenv system that supports defaults
### Status

![npm](https://img.shields.io/npm/v/dotenv-defaults.svg)
[![Main](https://github.com/mrsteele/dotenv-defaults/actions/workflows/main.yml/badge.svg)](https://github.com/mrsteele/dotenv-defaults/actions/workflows/main.yml)
[![dependabot badge](https://badgen.net/dependabot/mrsteele/dotenv-defaults?icon=dependabot)](https://dependabot.com/)

### Installation
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
"main": "src/index.js",
"scripts": {
"test": "jest",
"lint": "standard",
"travis": "npm run lint && npm t"
"lint": "standard"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit ebbbd8e

Please sign in to comment.