mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 13:45:18 +00:00
ci: remove nightly nuxt 2 releases
This commit is contained in:
parent
1ee1f74d57
commit
bf4e6c5360
61
.github/workflows/nuxt2-edge.yml
vendored
61
.github/workflows/nuxt2-edge.yml
vendored
@ -1,61 +0,0 @@
|
|||||||
name: nuxt2-nightly
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 0 * * *'
|
|
||||||
|
|
||||||
# https://github.com/vitejs/vite/blob/main/.github/workflows/ci.yml
|
|
||||||
env:
|
|
||||||
# 7 GiB by default on GitHub, setting to 6 GiB
|
|
||||||
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
|
|
||||||
NODE_OPTIONS: --max-old-space-size=6144
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
nightly:
|
|
||||||
if: github.repository_owner == 'nuxt'
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
id-token: write
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
|
||||||
with:
|
|
||||||
ref: '2.x'
|
|
||||||
fetch-depth: 0 # All history
|
|
||||||
- name: fetch tags
|
|
||||||
run: git fetch --depth=1 origin "+refs/tags/*:refs/tags/*"
|
|
||||||
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
|
|
||||||
with:
|
|
||||||
node-version: 18
|
|
||||||
registry-url: 'https://registry.npmjs.org'
|
|
||||||
- name: install
|
|
||||||
run: yarn --check-files --frozen-lockfile --non-interactive
|
|
||||||
- name: lint
|
|
||||||
run: yarn test:lint
|
|
||||||
- name: audit
|
|
||||||
run: yarn run audit
|
|
||||||
- name: build
|
|
||||||
run: yarn test:fixtures -i
|
|
||||||
- name: lint app
|
|
||||||
run: yarn lint:app
|
|
||||||
- name: test types
|
|
||||||
run: yarn test:types
|
|
||||||
- name: test dev
|
|
||||||
run: yarn test:dev
|
|
||||||
- name: test unit
|
|
||||||
run: yarn test:unit
|
|
||||||
- name: test e2e
|
|
||||||
run: yarn test:e2e
|
|
||||||
- name: bump version
|
|
||||||
run: yarn lerna version --yes --no-changelog --no-git-tag-version --no-push --force-publish "*" --loglevel verbose
|
|
||||||
- name: build
|
|
||||||
run: PACKAGE_SUFFIX=edge yarn build
|
|
||||||
- name: publish
|
|
||||||
run: ./scripts/workspace-run npm publish -q
|
|
||||||
env:
|
|
||||||
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}
|
|
||||||
NPM_CONFIG_PROVENANCE: true
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user