Skip to content
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.

chore(deps): bump nunjucks from 3.2.3 to 3.2.4 #305

chore(deps): bump nunjucks from 3.2.3 to 3.2.4

chore(deps): bump nunjucks from 3.2.3 to 3.2.4 #305

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: |
npm i
env:
CI: true
- name: Lint JavaScript and JSON files
run: |
npm run lint
env:
CI: true
- name: Build with Docker
run: docker build .