Skip to content

Bump diff from 3.3.1 to 3.5.0 #26

Bump diff from 3.3.1 to 3.5.0

Bump diff from 3.3.1 to 3.5.0 #26

Workflow file for this run

---
name: Tests and Code Analysis
on: # yamllint disable-line rule:truthy
# Trigger the workflow on pushes to the master branch and all pull requests.
push:
branches:
- main
pull_request:
jobs:
node-tests:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
node-version:
- 18
- 20
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Run tests
run: yarn test
yaml-lint:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: YAML lint
uses: ibiqlik/action-yamllint@master
with:
config_file: .yamllint.yml