This repository has been archived by the owner on Oct 9, 2024. It is now read-only.
Bump ejs from 3.1.8 to 3.1.10 #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CI" | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-16.04 | |
strategy: | |
matrix: | |
node: [ '12', '10', '8' ] | |
name: Node ${{ matrix.node }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: npm install | |
- run: npm run build | |
- run: npm test |