Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/last9/openapm-nodejs into i…
Browse files Browse the repository at this point in the history
…nstrument-pg
  • Loading branch information
chtushar committed May 24, 2024
2 parents 47670be + 6b0ded7 commit cf0f24a
Show file tree
Hide file tree
Showing 65 changed files with 6,813 additions and 10,767 deletions.
8 changes: 5 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ module.exports = {
plugins: ['@typescript-eslint'],
root: true,
rules: {
prettier: {
'space-before-function-paren': ['error', 'never']
}
'func-call-spacing': 'off',
'space-before-function-paren': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
indent: '10'
}
};
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/setup-node@v2
with:
node-version: 16.20.0
node-version: 18.19.0
- uses: shogo82148/[email protected]
with:
mysql-version: '8.0'
Expand Down Expand Up @@ -43,6 +43,9 @@ jobs:
- name: 📦 Install dependencies
run: npm install --frozen-lockfile

- name: 📦 Install Playwright Deps
run: npx playwright install --with-deps

- name: 🧪 Test
env:
DB_HOST: localhost
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ node_modules
dist
.DS_Store
.idea
.env
.env
.next
Loading

0 comments on commit cf0f24a

Please sign in to comment.