1
0
mirror of https://github.com/garraflavatra/alphabets.git synced 2025-01-18 13:17:59 +00:00

Remove Husky

This commit is contained in:
Romein van Buren 2021-08-23 14:40:41 +02:00
parent 26006cc8aa
commit bdb31de878
5 changed files with 5700 additions and 29 deletions

View File

@ -1,13 +1,6 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
on: [ push ]
jobs:
build:
@ -17,7 +10,6 @@ jobs:
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
@ -25,6 +17,6 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
- run: npm install
- run: npm run build
- run: npm run test

1
.husky/.gitignore vendored
View File

@ -1 +0,0 @@
_

View File

@ -1,5 +0,0 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
npm run build
npm test

5705
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -5,7 +5,6 @@
"main": "dist/bundle.js",
"scripts": {
"build": "rollup -c",
"prepare": "husky install",
"test": "jest"
},
"keywords": [],
@ -17,7 +16,6 @@
"url": "https://github.com/garraflavatra/alphabets.git"
},
"devDependencies": {
"husky": "^7.0.1",
"jest": "^27.0.1",
"rollup": "^2.49.0",
"rollup-plugin-clear": "^2.0.7",