add D&B station #149
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Check build | |
on: push | |
jobs: | |
check: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install NodeJS | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '12' | |
- name: Install npm dependencies | |
run: npm install | |
- name: Package code | |
run: npx webpack-cli |