mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-14 10:39:18 +08:00
18ba26dd47
The only exception is `webpack-svgstore-plugin` that still points to some older package versions with `low` severity vulnerabilities and apparently the repo is not active that [the actual fix](https://github.com/mrsum/webpack-svgstore-plugin/pull/172) could be merged. Because of that I'm limiting the scope to just `high` severity issues. Note: I decided to include `audit-ci` because `yarn` does not provide (yet) a way to filter violations by severity level. fix(deps): upgrade packages so that `yarn lint` works with the current babel-eslint
20 lines
266 B
YAML
20 lines
266 B
YAML
language: node_js
|
|
|
|
node_js:
|
|
- 10
|
|
|
|
cache: yarn
|
|
|
|
before_install:
|
|
- curl -o- -L https://yarnpkg.com/install.sh | bash -s
|
|
- export PATH=$HOME/.yarn/bin:$PATH
|
|
|
|
install:
|
|
- yarn install
|
|
- yarn build:packages
|
|
|
|
script:
|
|
- yarn audit-ci
|
|
- yarn lint
|
|
- yarn test
|