Skip to content
This repository has been archived by the owner on Feb 6, 2025. It is now read-only.

Commit

Permalink
Add webpack build
Browse files Browse the repository at this point in the history
  • Loading branch information
core23 committed Jun 19, 2020
1 parent 0f7f473 commit 03e4398
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ branches:
enforce_admins: false
required_status_checks:
contexts:
- "Webpack build"
- "Coding Standards (7.4)"
- "Static Code Analysis (7.4)"
- "Tests (7.3, lowest, ~4.2)"
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,29 @@ on:
name: "Continuous Integration"

jobs:
webpack:
name: "Webpack build"

runs-on: ubuntu-latest

steps:
- name: "Checkout"
uses: actions/[email protected]

- name: "Using Node"
uses: actions/setup-node@v1

- name: "Install dependencies"
run: |
yarn
- name: "Build"
run: yarn build

- name: "Check size"
run: |
yarn size
coding-standards:
name: "Coding Standards"

Expand Down

0 comments on commit 03e4398

Please sign in to comment.