Skip to content

Commit

Permalink
Merge pull request #59 from foretagsplatsen/cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
DamienCassou authored Feb 7, 2022
2 parents 7e24efc + 98be5cc commit 4c816b5
Show file tree
Hide file tree
Showing 35 changed files with 643 additions and 8,829 deletions.
5 changes: 0 additions & 5 deletions .babelrc

This file was deleted.

1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
let error = 2;

module.exports = {
parser: "babel-eslint",
parserOptions: {
"ecmaVersion": 6,
"sourceType": "module"
Expand Down
7 changes: 7 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Each line is a file pattern followed by one or more owners.
#
# Order is important. The last matching pattern has the most precedence.
# So if a pull request only touches javascript files, only these owners
# will be requested to review.

* @DamienCassou @BenjaminVanRyseghem
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
open-pull-requests-limit: 2
schedule:
interval: "daily" # runs on every weekday, Monday to Friday
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [lts/*]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run lint
- run: npm run test
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

14 changes: 0 additions & 14 deletions bower.json

This file was deleted.

11 changes: 0 additions & 11 deletions config.js

This file was deleted.

Loading

0 comments on commit 4c816b5

Please sign in to comment.