Skip to content

Merge pull request #115 from sabattle/dependabot/npm_and_yarn/yaml-2.2.2 #30

Merge pull request #115 from sabattle/dependabot/npm_and_yarn/yaml-2.2.2

Merge pull request #115 from sabattle/dependabot/npm_and_yarn/yaml-2.2.2 #30

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Check format
run: npm run check