diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index e6085a1..189a26c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -6,10 +6,18 @@ jobs: test: runs-on: ubuntu-latest steps: - - run: | - git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git /tmp/repo - cd /tmp/repo - npm install - npm run lint - npm run typecheck - npm test + - name: Checkout + run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/terminal-layout-sync.git ${{ github.workspace }} + - name: Setup Node + run: | + apt-get update && apt-get install -y nodejs npm + node --version + npm --version + - name: Install + run: npm install + - name: Lint + run: npm run lint + - name: Typecheck + run: npm run typecheck + - name: Test + run: npm test