8000 Allow whitespace in extended ternary operator for false conditions. · twigjs/twig.js@3b22211 · GitHub
[go: up one dir, main page]

Skip to content

Allow whitespace in extended ternary operator for false conditions. #157

Allow whitespace in extended ternary operator for false conditions.

Allow whitespace in extended ternary operator for false conditions. #157

Workflow file for this run

name: "tests"
on:
push:
pull_request:
jobs:
tests:
name: "Node v${{ matrix.node_js }}"
runs-on: "ubuntu-latest"
strategy:
fail-fast: true
matrix:
node_js:
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
steps:
- name: "Checkout code"
uses: "actions/checkout@v3"
- name: "Setup Node and npm"
uses: "actions/setup-node@v3"
with:
cache: "npm"
node-version: "${{ matrix.node_js }}"
- name: "Install Node dependencies"
run: "npm ci"
- name: "Run tests"
run: "npm run test"
0