Skip to content

Commit

Permalink
Fix typo in workflow (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
mobeigi authored Oct 30, 2024
1 parent 2049759 commit be6367a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/chessort.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,24 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Install
working-directory: ./app
run: yarn install

- name: Lint
working-directory: ./app
run: yarn lint

- name: Build
working-directory: ./app
run: yarn build

build_test_server:
runs-on: ubuntu-latest

Expand All @@ -39,10 +43,10 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Use Python ${{ matrix.python-versio }}
- name: Use Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-versio: ${{ matrix.python-versio }}
python-version: ${{ matrix.python-version }}
- name: Install
working-directory: ./server
run: pip install -r requirements.txt
Expand Down

0 comments on commit be6367a

Please sign in to comment.