This repository has been archived by the owner on Apr 22, 2024. It is now read-only.
[extension] point at new backend url :party: #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Extension Code Checks | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
paths: [ fc-community-extension/** ] | |
jobs: | |
code-checks: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./fc-community-extension | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: yarn | |
- name: Run checks | |
run: yarn ci |