Skip to content

Merge pull request #134 from handlebars-lang/dependabot/npm_and_yarn/… #89

Merge pull request #134 from handlebars-lang/dependabot/npm_and_yarn/…

Merge pull request #134 from handlebars-lang/dependabot/npm_and_yarn/… #89

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request: {}
jobs:
test:
name: Test & Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test