mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-11 14:22:51 +00:00
fix ci
This commit is contained in:
15
.github/workflows/check.yml
vendored
15
.github/workflows/check.yml
vendored
@@ -10,7 +10,8 @@ concurrency:
|
|||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
permissions: {}
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
@@ -22,3 +23,15 @@ jobs:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
uses: ./.github/actions/setup
|
uses: ./.github/actions/setup
|
||||||
- run: pnpm exec turbo lint:check
|
- run: pnpm exec turbo lint:check
|
||||||
|
|
||||||
|
# test:
|
||||||
|
# name: Test
|
||||||
|
# runs-on: ubuntu-latest
|
||||||
|
# timeout-minutes: 10
|
||||||
|
# steps:
|
||||||
|
# - uses: actions/checkout@v4
|
||||||
|
# - name: Install dependencies
|
||||||
|
# uses: ./.github/actions/setup
|
||||||
|
# - run: pnpm vitest
|
||||||
|
# env:
|
||||||
|
# NODE_OPTIONS: --max_old_space_size=8192
|
||||||
|
|||||||
31
.github/workflows/release.yml
vendored
Normal file
31
.github/workflows/release.yml
vendored
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
# name: Release
|
||||||
|
# on:
|
||||||
|
# push:
|
||||||
|
# branches: [main]
|
||||||
|
|
||||||
|
# concurrency:
|
||||||
|
# group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
|
||||||
|
# permissions: {}
|
||||||
|
|
||||||
|
# jobs:
|
||||||
|
# release:
|
||||||
|
# name: Release
|
||||||
|
# runs-on: ubuntu-latest
|
||||||
|
# timeout-minutes: 10
|
||||||
|
# permissions:
|
||||||
|
# contents: write
|
||||||
|
# id-token: write
|
||||||
|
# pull-requests: write
|
||||||
|
# steps:
|
||||||
|
# - uses: actions/checkout@v4
|
||||||
|
# - name: Install dependencies
|
||||||
|
# uses: ./.github/actions/setup
|
||||||
|
# - name: Create Release Pull Request or Publish
|
||||||
|
# uses: changesets/action@v1
|
||||||
|
# with:
|
||||||
|
# version: pnpm changeset-version
|
||||||
|
# publish: pnpm changeset-publish
|
||||||
|
# env:
|
||||||
|
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||||
Reference in New Issue
Block a user