Skip to content

Commit eb81aaf

Browse files
committed
Set up package
1 parent d5f4648 commit eb81aaf

File tree

5 files changed

+77
-0
lines changed

5 files changed

+77
-0
lines changed

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
indent_style = tab
5+
end_of_line = lf
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
10+
[*.yml]
11+
indent_style = space
12+
indent_size = 2

.github/workflows/ci.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Install and test @ava/babel
2+
on: push
3+
jobs:
4+
nodejs:
5+
name: Node.js
6+
runs-on: ${{ matrix.os }}
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
# Hardcoded versions due to https://github.com/actions/setup-node/issues/27,
11+
# which means that sometimes too old a version gets installed.
12+
node-version: [8.16.1, ^10.0.0, ^12.0.0]
13+
os: [ubuntu-latest, windows-latest]
14+
steps:
15+
- uses: actions/checkout@v1
16+
with:
17+
fetch-depth: 1
18+
- name: Enable symlinks
19+
if: matrix.os == 'windows-latest'
20+
run: |
21+
git config core.symlinks true
22+
git reset --hard
23+
- uses: actions/setup-node@v1
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
- run: npm install --no-audit
27+
- run: npm test
28+
- run: npx codecov --file=./coverage/lcov.info
29+
env:
30+
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/.nyc_output
2+
/coverage
3+
/node_modules

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

package.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "@ava/babel",
3+
"version": "0.0.0",
4+
"description": "Babel provider for AVA",
5+
"files": [
6+
"index.js",
7+
"stage-4.js"
8+
],
9+
"author": "Mark Wubben (https://novemberborn.net)",
10+
"repository": "avajs/babel",
11+
"license": "MIT",
12+
"keywords": [
13+
"ava",
14+
"babel"
15+
],
16+
"scripts": {
17+
"test": "xo && nyc ava"
18+
},
19+
"devDependencies": {
20+
"ava": "^2.4.0",
21+
"nyc": "^14.1.1",
22+
"xo": "^0.25.3"
23+
},
24+
"nyc": {
25+
"reporter": [
26+
"html",
27+
"lcov",
28+
"text"
29+
]
30+
}
31+
}

0 commit comments

Comments
 (0)