Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GaelGirodon committed Oct 7, 2022
1 parent c3e742c commit e74fdcf
Show file tree
Hide file tree
Showing 42 changed files with 18,041 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# EditorConfig
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
9 changes: 9 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
env:
es2021: true
node: true
mocha: true
extends: eslint:recommended
parserOptions:
ecmaVersion: latest
sourceType: module
rules: {}
22 changes: 22 additions & 0 deletions .github/workflows/check-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: check-release

on:
push:
branches:
- release

env:
GIST_ID: 715c62717519f634185af0ebde234992

jobs:
check-release:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: gaelgirodon/ci-badges-action@v1
with:
gist-id: ${{ env.GIST_ID }}
token: ${{ secrets.GIST_TOKEN }}
prefix: repo
ref: true
30 changes: 30 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: main

on:
push:
branches:
- main

env:
GIST_ID: 715c62717519f634185af0ebde234992

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm run test:ci
env:
GIST_TOKEN: ${{ secrets.GIST_TOKEN }}
- run: rm -rf test/data
- uses: ./
with:
gist-id: ${{ env.GIST_ID }}
token: ${{ secrets.GIST_TOKEN }}
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#
# .gitignore
#

# IDE
.vscode/
.idea/
*.iml

# Project
node_modules/
coverage/
test-results.xml
2 changes: 2 additions & 0 deletions .mocharc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
extension: ['test.js']
recursive: true
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

All notable changes to this project will be documented in this file.

## 1.0.0 - 2022-10-07

- Initial release
Loading

0 comments on commit e74fdcf

Please sign in to comment.