Skip to content

Commit

Permalink
Add better tooling (#19)
Browse files Browse the repository at this point in the history
* changed to pnpm

* removed vscode settings

* added turbo

* added vercel pipeline

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
spacey-sooty and dependabot[bot] authored Sep 23, 2023
1 parent 9437f7a commit c3e194b
Show file tree
Hide file tree
Showing 7 changed files with 5,366 additions and 5,060 deletions.
39 changes: 24 additions & 15 deletions .github/workflows/Build-Checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,35 +13,44 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.4.0
with:
version: latest
- name: Install Turbo
run: npm install turbo -g
- name: Install
run: yarn install
- name: Lint
run: yarn run lint
- name: Build
run: yarn run build
run: pnpm install
- name: Build and Lint
run: turbo build lint

Windows-Build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.4.0
with:
version: latest
- name: Install Turbo
run: npm install turbo -g
- name: Install
run: yarn install
- name: Lint
run: yarn run lint
- name: Build
run: yarn run build
run: pnpm install
- name: Build and Lint
run: turbo build lint

MacOS-Build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.4.0
with:
version: latest
- name: Install Turbo
run: npm install turbo -g
- name: Install
run: yarn install
- name: Lint
run: yarn run lint
- name: Build
run: yarn run build
run: pnpm install
- name: Build and Lint
run: turbo build lint
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,11 @@ yarn-error.log*

# vercel
.vercel

# turbo
.turbo

# editor specific stuff
/.vscode
/.idea

3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

Loading

1 comment on commit c3e194b

@vercel
Copy link

@vercel vercel bot commented on c3e194b Sep 23, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.