diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c1776e6..11c2b29 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,16 +12,13 @@ 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 @@ -29,16 +26,13 @@ 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: Run TypeScript Compiler - run: npx tsc + - run: npx tsc e2e-chrome: runs-on: ubuntu-latest