45c3c8211e
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
22 lines
401 B
YAML
22 lines
401 B
YAML
name: NPM build
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
env:
|
|
APP_NAME: gpoddersync
|
|
|
|
jobs:
|
|
js:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
path: ${{ env.APP_NAME }}
|
|
- name: Install NPM packages
|
|
run: cd ${{ env.APP_NAME }} && make npm-init
|
|
- name: Build JS
|
|
run: cd ${{ env.APP_NAME }} && make build-js-production
|