From b76b953fc22ff77ac38056ab6f31d0b0999b3672 Mon Sep 17 00:00:00 2001 From: AlexVeeBee Date: Tue, 27 Feb 2024 00:15:12 +0000 Subject: [PATCH] node test --- .github/workflows/main.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4b6eadb..4009c38 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,4 +1,4 @@ -name: Python application +name: node-js on: push: @@ -17,15 +17,11 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: [ '3.10' ] + node-version: [14.x] steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 with: - python-version: ${{ matrix.python-version }} - cache: 'pip' - env: - CI: true - AGENT_TOOLSDIRECTORY: /opt/gitea-runner/_work/_tool - + node-version: ${{ matrix.node-version }}