Skip to content

Update node.js.yml

Update node.js.yml #10

Workflow file for this run

name: Node.js CI
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org/'
cache: 'npm'
- name: Change working directory to www
run: cd open-etc-pool/www
- name: Install global dependencies
run: |
npm install -g [email protected]
npm install -g bower
- name: Install Node.js dependencies
run: npm install
- name: Install Bower dependencies
run: npx bower install
- name: Build Ember application
run: npm run build