From 29f5e934da620d63f6c93dbc66d6a005ebd4a5b8 Mon Sep 17 00:00:00 2001 From: nexpid <60316309+nexpid@users.noreply.github.com> Date: Sun, 5 May 2024 19:03:14 +0200 Subject: [PATCH] feat: move package.json --- .github/workflows/iconpack_tree_writer.yml | 8 ++------ .github/workflows/list_iconpacks.yml | 5 +---- .gitignore | 2 +- .github/scripts/package.json => package.json | 0 .github/scripts/pnpm-lock.yaml => pnpm-lock.yaml | 0 5 files changed, 4 insertions(+), 11 deletions(-) rename .github/scripts/package.json => package.json (100%) rename .github/scripts/pnpm-lock.yaml => pnpm-lock.yaml (100%) diff --git a/.github/workflows/iconpack_tree_writer.yml b/.github/workflows/iconpack_tree_writer.yml index a9f2006..2babec2 100644 --- a/.github/workflows/iconpack_tree_writer.yml +++ b/.github/workflows/iconpack_tree_writer.yml @@ -18,14 +18,13 @@ concurrency: jobs: write: runs-on: ubuntu-latest - name: Write Trees + name: Write files permissions: contents: write steps: - uses: actions/checkout@v4 with: path: main - - uses: actions/checkout@v4 with: ref: iconpack-trees @@ -34,11 +33,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 18.x - - uses: pnpm/action-setup@v3 - - - working-directory: .github/scripts - run: pnpm i + - run: pnpm i - name: Write trees working-directory: main diff --git a/.github/workflows/list_iconpacks.yml b/.github/workflows/list_iconpacks.yml index 3f63d7a..6f05b21 100644 --- a/.github/workflows/list_iconpacks.yml +++ b/.github/workflows/list_iconpacks.yml @@ -25,11 +25,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 18.x - - uses: pnpm/action-setup@v3 - - - working-directory: .github/scripts - run: pnpm i + - run: pnpm i - name: Write ICONPACKS.md run: node .github/scripts/list_iconpacks/index.mjs diff --git a/.gitignore b/.gitignore index f2dd7db..b512c09 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -.github/scripts/node_modules \ No newline at end of file +node_modules \ No newline at end of file diff --git a/.github/scripts/package.json b/package.json similarity index 100% rename from .github/scripts/package.json rename to package.json diff --git a/.github/scripts/pnpm-lock.yaml b/pnpm-lock.yaml similarity index 100% rename from .github/scripts/pnpm-lock.yaml rename to pnpm-lock.yaml