1
0
mirror of https://github.com/tabler/tabler.git synced 2026-06-17 12:50:03 +04:00

new bundlewatch action, remove unused actions (#1330)

This commit is contained in:
Paweł Kuna
2022-10-24 20:59:05 +02:00
committed by GitHub
parent fcf850c341
commit 0cf94835ab
3 changed files with 67 additions and 81 deletions
+44
View File
@@ -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
-74
View File
@@ -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
+23 -7
View File
@@ -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"
}
]
},