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