Skip to content

docker: use compose plugin #68

docker: use compose plugin

docker: use compose plugin #68

Workflow file for this run

name: '🚗 NPM build'
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
env:
APP_NAME: nextpod
jobs:
js:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
path: ${{ env.APP_NAME }}
- name: Install NPM packages
run: cd ${{ env.APP_NAME }} && npm ci
- name: Build JS
run: cd ${{ env.APP_NAME }} && npm run build