chore: added qodana config #146
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- V1 | |
pull_request: | |
branches: | |
- V1 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Build package | |
run: yarn pre-publish | |
# update: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: 🏗 Setup repo | |
# uses: actions/checkout@v3 | |
# - name: 📦 Setup node & Install dependencies | |
# uses: ./.github/actions/setup | |
# - name: 🏗 Setup EAS | |
# uses: expo/expo-github-action@v8 | |
# with: | |
# eas-version: latest | |
# token: ${{ secrets.EXPO_TOKEN }} | |
# - name: 🚀 Create preview | |
# uses: expo/expo-github-action/preview@v8 | |
# id: preview | |
# with: | |
# command: eas update --auto | |
# comment: true | |
# working-directory: example/ | |
# env: | |
# PROJECT_ID: ${{ secrets.CLOUD_PROJECT_ID }} |