chore(deps): remove unused netlify dependencies
This commit is contained in:
parent
6c31421b26
commit
351a413adb
3 changed files with 82 additions and 9758 deletions
78
.github/workflows/main.yml
vendored
78
.github/workflows/main.yml
vendored
|
@ -136,81 +136,3 @@ jobs:
|
||||||
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||||
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
||||||
command: deploy --name=rss-reader-proxy --minify ./functions/rss-proxy/rss-proxy-cloudflare.mts
|
command: deploy --name=rss-reader-proxy --minify ./functions/rss-proxy/rss-proxy-cloudflare.mts
|
||||||
preview:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
name: Deploy preview
|
|
||||||
if: ${{ github.ref != 'refs/heads/main' }}
|
|
||||||
needs: build-app
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: actions/setup-node@v4
|
|
||||||
id: node-setup
|
|
||||||
with:
|
|
||||||
node-version: ${{ env.NODE_VERSION }}
|
|
||||||
- name: Yarn cache
|
|
||||||
uses: actions/cache@v4
|
|
||||||
id: yarn-cache-restore
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
.yarn
|
|
||||||
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-${{ env.NODE_VERSION }}
|
|
||||||
- run: . script/bootstrap.sh
|
|
||||||
- name: Build Artifacts
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
name: build-artifacts
|
|
||||||
path: dist
|
|
||||||
- name: Deploy
|
|
||||||
id: preview-deploy
|
|
||||||
env:
|
|
||||||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_TOKEN }}
|
|
||||||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
|
||||||
run: |
|
|
||||||
yarn netlify deploy --dir=dist --json | jq .deploy_url > output.log
|
|
||||||
echo "::set-output name=draft-url::$(cat output.log)"
|
|
||||||
- name: Report
|
|
||||||
uses: actions/github-script@v7
|
|
||||||
env:
|
|
||||||
DRAFT_URL: ${{ steps.preview-deploy.outputs.draft-url }}
|
|
||||||
with:
|
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
script: |
|
|
||||||
github.rest.issues.createComment({
|
|
||||||
issue_number: context.issue.number,
|
|
||||||
owner: context.repo.owner,
|
|
||||||
repo: context.repo.repo,
|
|
||||||
body: `:eyes: Branch deployed at ${process.env.DRAFT_URL}`
|
|
||||||
})
|
|
||||||
deploy:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
name: Deploy
|
|
||||||
needs: build-app
|
|
||||||
if: ${{ github.ref == 'refs/heads/main' }}
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: actions/setup-node@v4
|
|
||||||
id: node-setup
|
|
||||||
with:
|
|
||||||
node-version: ${{ env.NODE_VERSION }}
|
|
||||||
- name: Yarn cache
|
|
||||||
uses: actions/cache@v4
|
|
||||||
id: yarn-cache-restore
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
.yarn
|
|
||||||
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-${{ env.NODE_VERSION }}
|
|
||||||
- run: . script/bootstrap.sh
|
|
||||||
- name: Build Artifacts
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
name: build-artifacts
|
|
||||||
path: dist
|
|
||||||
- name: Netlify CLI setup
|
|
||||||
run: npm install -g netlify-cli
|
|
||||||
- name: Deploy
|
|
||||||
id: preview-deploy
|
|
||||||
env:
|
|
||||||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_TOKEN }}
|
|
||||||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
|
||||||
run: |
|
|
||||||
yarn netlify deploy --dir=dist --prod
|
|
||||||
|
|
|
@ -28,17 +28,16 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@biomejs/biome": "^1.5.3",
|
"@biomejs/biome": "^1.5.3",
|
||||||
"@netlify/functions": "^2.6.0",
|
|
||||||
"@testing-library/dom": "^9.3.4",
|
"@testing-library/dom": "^9.3.4",
|
||||||
"@testing-library/jest-dom": "^6.4.2",
|
"@testing-library/jest-dom": "^6.4.2",
|
||||||
"@testing-library/react": "^14.2.1",
|
"@testing-library/react": "^14.2.1",
|
||||||
"@testing-library/user-event": "^14.5.2",
|
"@testing-library/user-event": "^14.5.2",
|
||||||
|
"@types/node": "^20.11.29",
|
||||||
"@types/react": "^18",
|
"@types/react": "^18",
|
||||||
"@types/react-dom": "^18",
|
"@types/react-dom": "^18",
|
||||||
"@vitejs/plugin-basic-ssl": "^1.1.0",
|
"@vitejs/plugin-basic-ssl": "^1.1.0",
|
||||||
"@vitejs/plugin-legacy": "^5.3.0",
|
"@vitejs/plugin-legacy": "^5.3.0",
|
||||||
"jsdom": "^24.0.0",
|
"jsdom": "^24.0.0",
|
||||||
"netlify-cli": "^17.16.2",
|
|
||||||
"terser": "^5.27.1",
|
"terser": "^5.27.1",
|
||||||
"typescript": "^5.3.3",
|
"typescript": "^5.3.3",
|
||||||
"vite": "^5.1.3",
|
"vite": "^5.1.3",
|
||||||
|
|
Loading…
Reference in a new issue