Skip to content

Commit

Permalink
feat: integrate first GA workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aldbr committed Sep 28, 2023
1 parent bacd0bf commit f09ca80
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: React App CI

on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Format
run: npm run prettier

- name: lint
run: npm run lint

- name: typescript
run: npm run typescript

- name: build
run: npm run build --if-present

0 comments on commit f09ca80

Please sign in to comment.