Skip to content

chore(deps): bump yaml from 2.3.1 to 2.3.2 #625

chore(deps): bump yaml from 2.3.1 to 2.3.2

chore(deps): bump yaml from 2.3.1 to 2.3.2 #625

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
schedule:
- cron: "00 20 * * *"
env:
CI: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: "16"
- run: npm install
- run: npm test
integration:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: "16"
- run: npm install
- run: PLATFORM=${{matrix.platform}} tests/test.sh
shell: bash