From 28c120d3c7cdb83664e2e0e1079a09ea00662e00 Mon Sep 17 00:00:00 2001 From: Ryan Munro Date: Wed, 6 May 2020 20:32:46 -0700 Subject: [PATCH] more python versions --- .github/workflows/nodejs.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 115a144..23e97cb 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -17,12 +17,18 @@ jobs: strategy: matrix: node-version: [4.x, 5.x, 6.x, 7.x, 8.x, 9.x, 10.x, 11.x, 12.x, 13.x, 14.x] + python-version: [2.6, 2.7, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v1 + with: + python-version: ${{ matrix.python-version }} - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} + - run: python -V && node --version - run: npm install -d # - run: npm run build --if-present - run: npm test