Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add lerna support and clean up all projects #112

Merged
merged 3 commits into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
17 changes: 17 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: eslint
run-name: Installs project and runs eslint checks
on: [ push, pull_request ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 18 ]
name: ESLint on Ubuntu with Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: yarn install
- run: yarn lint
4 changes: 2 additions & 2 deletions .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 16 ]
node: [ 18 ]
name: Prettier on Ubuntu with Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: yarn install
- run: yarn format
- run: yarn prettier:verify
17 changes: 17 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: tests
run-name: Installs project and runs tests
on: [ push, pull_request ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 18 ]
name: Tests Pass on Ubuntu with Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: yarn install
- run: yarn test
47 changes: 39 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,46 @@
# VSCode configuration
**/.vscode/

# Salesforce cache
**/.sf/
**/.sfdx/
**/.localdevserver/
**/deploy-options.json

# LWC VSCode autocomplete
**/lwc/jsconfig.json

# LWC Jest coverage reports
**/coverage/

# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
junit.xml
**/logs
**/*.log
**/npm-debug.log*
**/yarn-debug.log*
**/yarn-error.log*
**/junit.xml

# Dependency directories
node_modules/
**/node_modules/

# Stores custom attributes of its containing folder, such as the position of icons or the choice of a background image
.DS_Store
# Eslint cache
**/.eslintcache

# MacOS system files
**/.DS_Store

# Windows system files
**/Thumbs.db
**/ehthumbs.db
**/[Dd]esktop.ini
**/$RECYCLE.BIN/

# Local environment variables
**/.env

# Don't watch git for publishing to npm
.git

# We use YARN instead of NPM
**/package-lock.json
6 changes: 3 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

yarn format
yarn precommit
4 changes: 0 additions & 4 deletions .prettierignore

This file was deleted.

14 changes: 0 additions & 14 deletions .prettierrc

This file was deleted.

Binary file removed .sfdx/tools/apex.db
Binary file not shown.
75 changes: 0 additions & 75 deletions .sfdx/typings/lwc/apex/AppointmentController.d.ts

This file was deleted.

10 changes: 0 additions & 10 deletions DriverLicenseParser/.prettierignore

This file was deleted.

13 changes: 0 additions & 13 deletions DriverLicenseParser/.prettierrc

This file was deleted.

Loading