Skip to content

Commit

Permalink
Add lerna support and clean up all projects
Browse files Browse the repository at this point in the history
  • Loading branch information
maliroteh-sf committed Dec 12, 2023
1 parent 9b6b4d0 commit 7d39fb5
Show file tree
Hide file tree
Showing 1,437 changed files with 32,815 additions and 92,533 deletions.
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

0 comments on commit 7d39fb5

Please sign in to comment.