Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update rollup-plugin-md for security alerts and modern build #6

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
bb60848
Update dependencies for security alerts
BobKerns Dec 26, 2020
6df6dba
Remove unused import
BobKerns Dec 26, 2020
64d5d3b
Update rollup config to modern rollup options
BobKerns Dec 26, 2020
ed5fa2d
Add CI build github action.
BobKerns Dec 26, 2020
2315938
Remove buble and update tests.
BobKerns Dec 26, 2020
908c5df
Fix indentation to match existing files and eslint rules.
BobKerns Dec 26, 2020
6ef1e60
Bump package version number.
BobKerns Dec 26, 2020
9348524
Update eslint to 7.16.0, subsumes dependabot pull request #3.
BobKerns Dec 26, 2020
14f444a
Bump version to 1.0.1. The plugin is ver stable, and this avoid poten…
BobKerns Dec 26, 2020
c4a6c85
Bring the remaining dependencies up to latest.
BobKerns Dec 26, 2020
2fee9ce
Remove deprecated 'sanitize' option from the test.
BobKerns Dec 26, 2020
1363924
Bump marked from 1.2.7 to 4.0.10
dependabot[bot] Dec 5, 2022
4509b1f
Bump lodash from 4.17.20 to 4.17.21
dependabot[bot] Dec 5, 2022
7bea891
Bump path-parse from 1.0.6 to 1.0.7
dependabot[bot] Dec 5, 2022
3d3589a
Bump glob-parent from 5.1.1 to 5.1.2
dependabot[bot] Dec 5, 2022
87dfbca
Merge pull request #5 from BobKerns/dependabot/npm_and_yarn/glob-pare…
BobKerns Dec 5, 2022
e2759ad
Merge pull request #4 from BobKerns/dependabot/npm_and_yarn/path-pars…
BobKerns Dec 5, 2022
922d254
Merge pull request #3 from BobKerns/dependabot/npm_and_yarn/lodash-4.…
BobKerns Dec 5, 2022
e048b1d
Merge pull request #2 from BobKerns/dependabot/npm_and_yarn/marked-4.…
BobKerns Dec 5, 2022
857c43a
Bump minimatch and mocha
dependabot[bot] Dec 5, 2022
5b1f4e4
Merge pull request #6 from BobKerns/dependabot/npm_and_yarn/minimatch…
BobKerns Dec 5, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Node.js CI

on:
push:
branches:
- '*'
tags-ignore:
- 'v*'
paths-ignore:
- 'docs/**'

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test
env:
CI: true
Loading