Bump pathval from 1.1.0 to 1.1.1 #30
Workflow file for this run
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: 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 |