From 6dd59ffefc1f0913679e4c7cb29b7cc51087b56d Mon Sep 17 00:00:00 2001 From: Quentin Goinaud Date: Fri, 19 Jul 2024 10:56:24 +0200 Subject: [PATCH] test --- .devcontainer/devcontainer.json | 2 +- .github/workflows/push.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 74adb89..13b623e 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -2,7 +2,7 @@ "image": "mcr.microsoft.com/devcontainers/universal:2", "features": { "ghcr.io/devcontainers/features/node": { - "version": "22" + "version": "22.4" }, "ghcr.io/devcontainers-contrib/features/corepack:1": {}, "ghcr.io/devcontainers-contrib/features/tsx:1": {} diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 4344663..aa7e138 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -24,20 +24,20 @@ jobs: with: run_install: false - - name: Use Node.js 22 + - name: Use Node.js 22.4 uses: actions/setup-node@v4 with: - node-version: '22' + node-version: '22.4' cache: 'pnpm' - name: Install dependencies run: pnpm install - name: Package application - run: pnpm run package + run: pnpm run package && ls -la - name: list files - run: ls -lah out + run: ls -lah . && ls -lah out # - name: Run tests # uses: coactions/setup-xvfb@v1