Skip to content

feat(SkyBackground): add fade in animation #22

feat(SkyBackground): add fade in animation

feat(SkyBackground): add fade in animation #22

Workflow file for this run

name: test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Run tests
run: bun run test
# build:
# if: github.ref == 'refs/heads/main'
# runs-on: ubuntu-latest
# needs: test
# steps:
# - uses: actions/checkout@v3
# - uses: oven-sh/setup-bun@v1
# - name: Install dependencies
# run: bun install
# - name: Build web app
# run: bun expo export -p web
# - name: Setup Pages
# if: github.ref == 'refs/heads/main'
# uses: actions/configure-pages@v3
# - name: Upload Artifact
# if: github.ref == 'refs/heads/main'
# uses: actions/upload-pages-artifact@v1
# with:
# path: "./dist"
# deploy:
# if: github.ref == 'refs/heads/main'
# runs-on: ubuntu-latest
# needs: build
# permissions:
# pages: write
# id-token: write
# environment:
# name: github-pages
# url: ${{ steps.deployment.outputs.page_url }}
# steps:
# - name: Deploy to GitHub Pages
# id: deployment
# uses: actions/deploy-pages@v2