Skip to content

Bump js-yaml from 4.1.0 to 4.1.1 #35

Bump js-yaml from 4.1.0 to 4.1.1

Bump js-yaml from 4.1.0 to 4.1.1 #35

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
testing:
name: Testing on Node v${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: [20]
steps:
- name: Checking out
uses: actions/checkout@v3
- name: Use Node.js v${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: Install NPM dependencies
run: npm ci
- name: Check lint
run: npm run lint
- name: Check build
run: npm run build