From 9677fbe53491089af7e39ca397b8d1868d9030dd Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Thu, 2 Feb 2023 00:36:07 +0000 Subject: [PATCH] ci: update workflows --- .github/workflows/nightly.yml | 49 ----------------------------------- .github/workflows/test.yml | 2 -- .github/workflows/windows.yml | 2 -- 3 files changed, 53 deletions(-) delete mode 100644 .github/workflows/nightly.yml diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml deleted file mode 100644 index 20354b23ae8f..000000000000 --- a/.github/workflows/nightly.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: nightly - -on: - schedule: - - cron: '0 0 * * *' - -jobs: - nightly: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - ref: 'refs/heads/dev' - fetch-depth: 0 # All history - - name: fetch tags - run: git fetch --depth=1 origin "+refs/tags/*:refs/tags/*" - - uses: actions/setup-node@v3 - with: - node-version: 14 - 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 - env: - NODE_OPTIONS: "--max_old_space_size=4096" - - 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}} - diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ae12d7f8d1e9..c7c0f531e497 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,11 +3,9 @@ name: test on: push: branches: - - 2.x-dev - 2.x pull_request: branches: - - 2.x-dev - 2.x jobs: diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 0a67e6786e4a..df0c1374a137 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -3,11 +3,9 @@ name: windows on: push: branches: - - 2.x-dev - 2.x pull_request: branches: - - 2.x-dev - 2.x jobs: