Skip to content

Commit

Permalink
Update github test pipeline to use newer node versions in tests and a…
Browse files Browse the repository at this point in the history
…ctions
  • Loading branch information
nerdstrike committed Apr 3, 2024
1 parent 938f879 commit ba1b752
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v3
- uses: actions/setup-python@v5
with:
python-version: '3.10'
architecture: 'x64'
Expand Down Expand Up @@ -59,13 +59,13 @@ jobs:
MYSQL_DATABASE: "langqc"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Poetry
run: |
pipx install poetry
- uses: actions/setup-python@v3
- uses: actions/setup-python@v5
with:
python-version: '3.10'
architecture: 'x64'
Expand All @@ -82,10 +82,10 @@ jobs:
test-frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
- run: npm install
working-directory: ./frontend
- run: npm run test
Expand Down

0 comments on commit ba1b752

Please sign in to comment.