Fix copy #151
Workflow file for this run
This file contains hidden or 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: deploy | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: {} | |
jobs: | |
setup: | |
name: π§ Setup | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: β Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 24 | |
- name: βΆοΈ Run setup script | |
run: npm run setup | |
- name: Κ¦ TypeScript | |
run: npm run typecheck | |
- name: ⬣ ESLint | |
run: echo "Linting is not working in CI π€·ββοΈ" | |
tests: | |
name: π§ͺ Test | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
# Use continue-on-error to ensure this job doesn't fail the workflow | |
continue-on-error: true | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: β Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 24 | |
- name: π¦ Install dependencies | |
run: npm ci | |
- name: π§ͺ Run tests | |
id: run_tests | |
run: node ./epicshop/test.js ..s | |
deploy: | |
name: π Deploy | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
# only deploy main branch on pushes on non-forks | |
if: | |
${{ github.ref == 'refs/heads/main' && github.event_name == 'push' && | |
github.repository_owner == 'epicweb-dev' }} | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: π Setup Fly | |
uses: superfly/flyctl-actions/[email protected] | |
- name: π Deploy | |
run: | |
flyctl deploy --remote-only --build-arg | |
EPICSHOP_GITHUB_REPO=https://github.com/${{ github.repository }} | |
--build-arg EPICSHOP_COMMIT_SHA=${{ github.sha }} | |
working-directory: ./epicshop | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} |