Skip to content

Commit

Permalink
revert types checker
Browse files Browse the repository at this point in the history
  • Loading branch information
ccataalin authored Jul 31, 2024
1 parent ee36626 commit 124a332
Showing 1 changed file with 6 additions and 16 deletions.
22 changes: 6 additions & 16 deletions .github/workflows/run-types-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ on:
branches: [ dev ]

env:
NODE_VERSION: '18'
PYTHON_VERSION: '3.10'
NODE_VERSION: '16'
PYTHON_VERSION: '3.7'

permissions:
contents: read
Expand All @@ -18,26 +18,16 @@ jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}

- uses: actions/setup-node@v4
- uses: actions/setup-node@v2-beta
with:
node-version: ${{ env.NODE_VERSION }}

- name: Upgrade pip
run: pip install --upgrade pip

- name: Upgrade SetupTools
run: pip install --upgrade setuptools

- name: Install Python deps
- name: Install python deps
run: pip install -r requirements.txt -r dev-requirements.txt -e.

- name: Install node deps
run: npm ci

- name: Check types
run: npx pyright

0 comments on commit 124a332

Please sign in to comment.