Skip to content

chore(deps): bump js-yaml (#49) #52

chore(deps): bump js-yaml (#49)

chore(deps): bump js-yaml (#49) #52

Workflow file for this run

name: "Build and Test"
on:
push:
branches: ["*"]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: "Install NPM dependencies"
run: npm ci
- name: Run prettier code style checks
run: npm run styleCheck
- name: "Run tests and lints"
run: npm run prepublishOnly