node test
All checks were successful
node-js / Test (14.x) (push) Successful in 52s

This commit is contained in:
AlexVeeBee 2024-02-27 00:15:12 +00:00
parent 6667decba6
commit b76b953fc2

View File

@ -1,4 +1,4 @@
name: Python application name: node-js
on: on:
push: push:
@ -17,15 +17,11 @@ jobs:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
strategy: strategy:
matrix: matrix:
python-version: [ '3.10' ] node-version: [14.x]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v4 - name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with: with:
python-version: ${{ matrix.python-version }} node-version: ${{ matrix.node-version }}
cache: 'pip'
env:
CI: true
AGENT_TOOLSDIRECTORY: /opt/gitea-runner/_work/_tool