Skip to content

Rebuild the folder structure #8

Rebuild the folder structure

Rebuild the folder structure #8

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build the application
runs-on: ubuntu-latest
defaults:
run:
working-directory: application-templates/javascript
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: '16.x'
- run: npm ci
- run: npm run lint && npm run prettier