Skip to content

Commit

Permalink
dist
Browse files Browse the repository at this point in the history
  • Loading branch information
breathingdust committed Feb 28, 2023
1 parent e5a1d3c commit a11fbf3
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 6 deletions.
10 changes: 6 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"env": {
"browser": true,
"commonjs": true,
"es2020": true,
"node": true
"es2021": true,
"jest": true
},
"extends": [
"airbnb-base"
"airbnb-base",
"prettier"
],
"parserOptions": {
"ecmaVersion": 11
"ecmaVersion": 12
},
"rules": {
}
Expand Down
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: ci
on:
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
basic-validation-call:
uses: actions/reusable-workflows/.github/workflows/basic-validation.yml@main
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ outputs:
stats:
description: 'json object describing results.'
runs:
using: 'node12'
main: 'index.js'
using: 'node16'
main: 'dist/index.js'

0 comments on commit a11fbf3

Please sign in to comment.