Skip to content

wd-153: replace gulp with 11ty #40

wd-153: replace gulp with 11ty

wd-153: replace gulp with 11ty #40

Workflow file for this run

name: Continuous Integration
env:
JAVA_VERSION: 8
on:
pull_request:
branches:
- development
- production
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/checkout@v3
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
- name: Install Java v${{ env.JAVA_VERSION }}
uses: actions/setup-java@v1
with:
java-version: ${{ env.JAVA_VERSION }}
architecture: x64
- name: Install Dependencies
run: |
npm install
- name: Code Building
run: |
make build
- name: Code Linting
run: |
make lint