Improve the CI workflow YAML file

This makes it consistent with the GitHub Advanced Security file and,
more importantly, ensures that all steps have a proper name for better
visibility.
This commit is contained in:
Tim van der Meij 2021-07-31 13:29:31 +02:00
parent 4774858d3c
commit 5a08d62e76
No known key found for this signature in database
GPG Key ID: 8C3FD2925A5F2762

View File

@ -1,14 +1,24 @@
name: CI name: CI
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:
build: test:
name: Test
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - name: Checkout repository
uses: actions/checkout@v2
- name: Use Node.js 14 LTS - name: Use Node.js 14 LTS
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: 14.x node-version: 14.x
- run: npm install -g gulp-cli
- run: npm install - name: Install Gulp
- run: npm test run: npm install -g gulp-cli
- name: Install other dependencies
run: npm install
- name: Run tests
run: npm test