Skip to content

CI

CI #576

Workflow file for this run

---
name: CI
on: [push]
jobs:
yaml-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: 17.3.0
- uses: actions/setup-python@v2
with:
python-version: "3.9.x"
- run: yarn install --frozen-lockfile
- run: pip install -r requirements.txt
- name: Lint
run: yamllint .
- name: Formatting
run: yarn fmt:check