1515 strategy :
1616 fail-fast : false
1717 matrix :
18- python-version : ["3.8", "3.9", "3.10", "3.11", "3.12"]
18+ python-version : ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
1919
2020 steps :
2121 - uses : actions/checkout@v4
@@ -25,28 +25,28 @@ jobs:
2525 uses : actions/setup-python@v5
2626 with :
2727 python-version : ${{ matrix.python-version }}
28- # - name: Set up Node.js 22.x
29- # uses: actions/setup-node@v4
30- # with:
31- # node-version: 22.x
32- # cache: "npm"
33- # - name: Enable Corepack and Yarn
34- # run: |
35- # npm install -g corepack
36- # corepack enable
37- # corepack prepare yarn --activate
38- # - name: Yarn run install
39- # run: |
40- # yarn install
28+ - name : Set up Node.js 22.x
29+ uses : actions/setup-node@v4
30+ with :
31+ node-version : 22.x
32+ cache : " npm"
33+ - name : Enable Corepack and Yarn
34+ run : |
35+ npm install -g corepack
36+ corepack enable
37+ corepack prepare yarn --activate
38+ - name : Yarn run install
39+ run : |
40+ yarn install
4141 - name : Install dependencies
4242 run : |
4343 python -m pip install --upgrade pip
4444 python -m pip install flake8 pytest wheel
4545 if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
4646 if [ -f tests/requirements.txt ]; then python -m pip install -r tests/requirements.txt; fi
47- # - name: Use Yarn to build component
48- # run: |
49- # yarn build
47+ - name : Use Yarn to build component
48+ run : |
49+ yarn build
5050 - name : Lint with flake8
5151 run : |
5252 # stop the build if there are Python syntax errors or undefined names
0 commit comments