diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 60ddd3ae..5f0d1ae1 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -7,7 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' - name: Setup Python uses: actions/setup-python@v3 with: @@ -21,6 +24,7 @@ jobs: python -m unittest test1.py + # name: Bacic Test: This is the name of your workflow. It's displayed on GitHub when the actions are running. # on: [push]: This specifies the event that triggers the workflow. In this case, the workflow runs whenever a push is made to the repository. #jobs:: This section contains all the jobs that the workflow will run. Jobs run in parallel by default.