Skip to content

Commit

Permalink
Merge branch 'master' into custom-parser
Browse files Browse the repository at this point in the history
  • Loading branch information
artf authored Aug 21, 2024
2 parents ebac70c + 3bbc79c commit 073993c
Show file tree
Hide file tree
Showing 10 changed files with 16,286 additions and 3,951 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: build
name: Quality
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -15,4 +17,5 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run lint
- run: npm run test
- run: npm run build
7 changes: 7 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
env: {
test: {
presets: ["@babel/preset-env", "@babel/preset-typescript"],
},
},
};
7 changes: 7 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
moduleFileExtensions: ["js", "ts"],
verbose: true,
modulePaths: ["<rootDir>/src"],
testMatch: ["<rootDir>/tests/specs/**/*.(t|j)s"],
setupFiles: ["<rootDir>/tests/setup.js"],
};
Loading

0 comments on commit 073993c

Please sign in to comment.