Skip to content

Commit

Permalink
Don't spell out the obvious
Browse files Browse the repository at this point in the history
  • Loading branch information
knuton committed Feb 2, 2024
1 parent 144907a commit 5ddcf4e
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,33 +12,27 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v2
- uses: actions/setup-node@v2
with:
node-version: "20"

- name: Install Dependencies
run: npm install
- run: npm install

- name: Check Code Formatting with Prettier
run: npx prettier --check .
- run: npx prettier --check .

typechecks:
runs-on: ubuntu-latest
name: Typechecks
steps:
- uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v2
- uses: actions/setup-node@v2
with:
node-version: "20"

- name: Install Dependencies
run: npm install
- run: npm install

- name: Run TypeScript Compiler
run: npx tsc
- run: npx tsc

e2e-chrome:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 5ddcf4e

Please sign in to comment.