mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-06 02:36:39 +00:00
pull ci branch
This commit is contained in:
commit
7c875d934f
2 changed files with 19 additions and 1 deletions
18
.github/workflows/deploy.yml
vendored
Normal file
18
.github/workflows/deploy.yml
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
name: Deploy
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: Test
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install dependencies
|
||||
run: yarn install --frozen-lockfile
|
||||
- name: Unit tests
|
||||
run: yarn test --watchAll=false
|
||||
- name: E2E tests
|
||||
uses: cypress-io/github-action@v1
|
||||
with:
|
||||
start: yarn start
|
||||
wait-on: 'http://localhost:3000'
|
||||
|
|
@ -20,7 +20,7 @@ and edit your E2E test cases in `cypress/integration/` folder.
|
|||
|
||||
- [ReactJs](https://reactjs.org/) - A JavaScript library for building user interfaces
|
||||
- [Redux](https://redux.js.org/) - A predictable statea container for JavaScript apps
|
||||
- [ROME](https://fiirebase.google.com/) - Firebase helps mobile and web app teams succeed
|
||||
- [Firebase](https://firebase.google.com/) - Firebase helps mobile and web app teams succeed
|
||||
|
||||
## Versioning
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue