Skip to content

Commit

Permalink
Runs typescript build in CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
WouterSpaak committed Mar 14, 2024
1 parent 23ab9fe commit 71a42cd
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,31 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8", "3.11" ]
python-version: ["3.8", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache: "pip"
- run: |
./python/ci/linux/create_venv.sh
./python/ci/linux/install_dependencies.sh
- name: build
run: |
./python/ci/linux/build_python_package.sh
build-typescript:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "npm"
- name: Build TypeScript artifacts
working-directory: ./typescript
run: |
npm ci
npm run build

0 comments on commit 71a42cd

Please sign in to comment.