From 00a1e411eb03ca1018888945aff7c95c1baf98fc Mon Sep 17 00:00:00 2001 From: Lethe <37437842+0xlethe@users.noreply.github.com> Date: Tue, 2 Jul 2024 21:18:32 +0900 Subject: [PATCH] temp: ignore git action --- .github/actions/setup/action.yml | 48 ++++++++-------- .github/workflows/ci.yml | 96 ++++++++++++++++---------------- 2 files changed, 72 insertions(+), 72 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index d402f3d..bf64d9b 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -1,27 +1,27 @@ -name: Setup -description: Setup Node.js and install dependencies +# name: Setup +# description: Setup Node.js and install dependencies -runs: - using: composite - steps: - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version-file: .nvmrc +# runs: +# using: composite +# steps: +# - name: Setup Node.js +# uses: actions/setup-node@v3 +# with: +# node-version-file: .nvmrc - - name: Cache dependencies - id: yarn-cache - uses: actions/cache@v3 - with: - path: | - **/node_modules - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn- +# - name: Cache dependencies +# id: yarn-cache +# uses: actions/cache@v3 +# with: +# path: | +# **/node_modules +# key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} +# restore-keys: | +# ${{ runner.os }}-yarn- - - name: Install dependencies - if: steps.yarn-cache.outputs.cache-hit != 'true' - run: | - yarn install --cwd example --frozen-lockfile - yarn install --frozen-lockfile - shell: bash +# - name: Install dependencies +# if: steps.yarn-cache.outputs.cache-hit != 'true' +# run: | +# yarn install --cwd example --frozen-lockfile +# yarn install --frozen-lockfile +# shell: bash diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6d8789..01a9d68 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,48 +1,48 @@ -name: CI -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - lint: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup - uses: ./.github/actions/setup - - - name: Lint files - run: yarn lint - - # - name: Typecheck files - # run: yarn typecheck - - # test: - # runs-on: ubuntu-latest - # steps: - # - name: Checkout - # uses: actions/checkout@v3 - - # - name: Setup - # uses: ./.github/actions/setup - - # - name: Run unit tests - # run: yarn test --maxWorkers=2 --coverage - - # build: - # runs-on: ubuntu-latest - # steps: - # - name: Checkout - # uses: actions/checkout@v3 - - # - name: Setup - # uses: ./.github/actions/setup - - # - name: Build package - # run: yarn prepack +# name: CI +# on: +# push: +# branches: +# - main +# pull_request: +# branches: +# - main + +# jobs: +# lint: +# runs-on: ubuntu-latest +# steps: +# - name: Checkout +# uses: actions/checkout@v3 + +# - name: Setup +# uses: ./.github/actions/setup + +# - name: Lint files +# run: yarn lint + +# # - name: Typecheck files +# # run: yarn typecheck + +# # test: +# # runs-on: ubuntu-latest +# # steps: +# # - name: Checkout +# # uses: actions/checkout@v3 + +# # - name: Setup +# # uses: ./.github/actions/setup + +# # - name: Run unit tests +# # run: yarn test --maxWorkers=2 --coverage + +# # build: +# # runs-on: ubuntu-latest +# # steps: +# # - name: Checkout +# # uses: actions/checkout@v3 + +# # - name: Setup +# # uses: ./.github/actions/setup + +# # - name: Build package +# # run: yarn prepack