Skip to content
This repository was archived by the owner on Jun 8, 2022. It is now read-only.

Commit 2037b61

Browse files
committed
Add GitHub workflow to test webpack production build
1 parent bd204bc commit 2037b61

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/test-webpack.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Webpack
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
test-webpack-prod-build:
7+
name: Test production build
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@2.3.4
11+
12+
- name: Install Yarn dependencies
13+
run: yarn install --prod --non-interactive
14+
15+
- name: Build for production
16+
run: yarn run prod

0 commit comments

Comments
 (0)