Skip to content

refactor: create actions/setup-dependencies/action #995

refactor: create actions/setup-dependencies/action

refactor: create actions/setup-dependencies/action #995

Workflow file for this run

name: CI
on:
# Build on PR creation/updates, also when pushing to main/develop, or create a release
pull_request:
types: [opened, synchronize]
push:
branches: [main, develop]
tags: [v*]
jobs:
validate:
name: Validate list schema
runs-on: ubuntu-latest
steps:
- name: Setup dependencies
uses: ./.github/actions/setup-dependencies
with:
persist_credentials: false
- name: Run validation
run: yarn validate
- name: Run tests
run: yarn test