Skip to content

Commit

Permalink
fix: resolving security issues
Browse files Browse the repository at this point in the history
BREAKING CHANGE: dropping support for older node versions (<10)
  • Loading branch information
mrsteele committed Apr 5, 2021
1 parent e1454fe commit 7efa55e
Show file tree
Hide file tree
Showing 5 changed files with 4,695 additions and 30 deletions.
101 changes: 101 additions & 0 deletions .github/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 Node v${{ matrix.node }}
runs-on: ubuntu-18.04
strategy:
matrix:
node: [ '10', '12', '14' ]
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: Build
run: npm i && npm run build
- 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 }}
Empty file added .github/workflows
Empty file.
27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 7efa55e

Please sign in to comment.