From 0cf94835ab3033bcb542dbf85b9bbd29fd17ec25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Kuna?= <1282324+codecalm@users.noreply.github.com> Date: Mon, 24 Oct 2022 20:59:05 +0200 Subject: [PATCH] new `bundlewatch` action, remove unused actions (#1330) --- .github/workflows/bundlewatch.yml | 44 ++++++++++++++++ .github/workflows/codeql-analysis.yml | 74 --------------------------- package.json | 30 ++++++++--- 3 files changed, 67 insertions(+), 81 deletions(-) create mode 100644 .github/workflows/bundlewatch.yml delete mode 100644 .github/workflows/codeql-analysis.yml diff --git a/.github/workflows/bundlewatch.yml b/.github/workflows/bundlewatch.yml new file mode 100644 index 000000000..9d5271ef4 --- /dev/null +++ b/.github/workflows/bundlewatch.yml @@ -0,0 +1,44 @@ +name: Bundlewatch + +on: + push: + branches-ignore: + - "dependabot/**" + pull_request: + workflow_dispatch: + +env: + FORCE_COLOR: 2 + NODE: 16 + +jobs: + bundlewatch: + runs-on: ubuntu-latest + + steps: + - name: Clone repository + uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: "${{ env.NODE }}" + cache: npm + + - name: Set up Bundler + uses: ruby/setup-ruby@v1 + with: + ruby-version: 2.6 + bundler-cache: true + + - name: Install npm dependencies + run: npm ci + + - name: Run build + run: npm run build + + - name: Run bundlewatch + run: npm run bundlewatch + env: + BUNDLEWATCH_GITHUB_TOKEN: "${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}" + CI_BRANCH_BASE: main diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml deleted file mode 100644 index 2d54dd532..000000000 --- a/.github/workflows/codeql-analysis.yml +++ /dev/null @@ -1,74 +0,0 @@ -# For most projects, this workflow file will not need changing; you simply need -# to commit it to your repository. -# -# You may wish to alter this file to override the set of languages analyzed, -# or to provide custom queries or build logic. -# -# ******** NOTE ******** -# We have attempted to detect the languages in your repository. Please check -# the `language` matrix defined below to confirm you have the correct set of -# supported CodeQL languages. -# -name: "CodeQL" - -on: - push: - branches: [ dev, master ] - pull_request: - # The branches below must be a subset of the branches above - branches: [ dev ] - schedule: - - cron: '32 8 * * 2' - -permissions: - contents: read - -jobs: - analyze: - permissions: - actions: read # for github/codeql-action/init to get workflow details - contents: read # for actions/checkout to fetch code - security-events: write # for github/codeql-action/autobuild to send a status report - name: Analyze - runs-on: ubuntu-latest - - strategy: - fail-fast: false - matrix: - language: [ 'javascript' ] - # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] - # Learn more: - # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@v2 - with: - languages: ${{ matrix.language }} - # If you wish to specify custom queries, you can do so here or in a config file. - # By default, queries listed here will override any specified in a config file. - # Prefix the list here with "+" to use these queries and those in the config file. - # queries: ./path/to/local/query, your-org/your-repo/queries@main - - # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). - # If this step fails, then you should remove it and run the build manually (see below) - - name: Autobuild - uses: github/codeql-action/autobuild@v2 - - # â„šī¸ Command-line programs to run using the OS shell. - # 📚 https://git.io/JvXDl - - # âœī¸ If the Autobuild fails above, remove it and uncomment the following three lines - # and modify them (or add more) to build your code if your project - # uses a compiled language - - #- run: | - # make bootstrap - # make release - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 diff --git a/package.json b/package.json index a85b5a2bc..bd6259b76 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "release": "release-it", "svg-icons": "gulp svg-icons", "percy": "gulp build && npx percy snapshot demo", - "bundlewatch": "bundlewatch --config .bundlewatch.config.json", + "bundlewatch": "bundlewatch", "chromatic": "chromatic --project-token=CHROMATIC_PROJECT_TOKEN", "storybook": "start-storybook -p 6006", "changelog": "gulp changelog", @@ -60,19 +60,19 @@ "files": [ { "path": "./dist/css/tabler.css", - "maxSize": "61 kB" + "maxSize": "65 kB" }, { "path": "./dist/css/tabler.min.css", - "maxSize": "55 kB" + "maxSize": "60 kB" }, { "path": "./dist/css/tabler.rtl.css", - "maxSize": "61 kB" + "maxSize": "65 kB" }, { "path": "./dist/css/tabler.rtl.min.css", - "maxSize": "55 kB" + "maxSize": "60 kB" }, { "path": "./dist/css/tabler-flags.css", @@ -90,13 +90,29 @@ "path": "./dist/css/tabler-payments.min.css", "maxSize": "2 kB" }, + { + "path": "./dist/css/tabler-vendors.css", + "maxSize": "7 kB" + }, + { + "path": "./dist/css/tabler-vendors.min.css", + "maxSize": "6 kB" + }, { "path": "./dist/js/tabler.js", - "maxSize": "100 kB" + "maxSize": "60 kB" }, { "path": "./dist/js/tabler.min.js", - "maxSize": "50 kB" + "maxSize": "45 kB" + }, + { + "path": "./dist/js/tabler.esm.js", + "maxSize": "60 kB" + }, + { + "path": "./dist/js/tabler.esm.min.js", + "maxSize": "45 kB" } ] },