Skip to content

Create github-actions-pr-to-main-yml #48

Create github-actions-pr-to-main-yml

Create github-actions-pr-to-main-yml #48

name: GitHub Actions After Push Into Develop Branch
on:
push:
branches:
- develop
jobs:
cypress-run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: develop
- name: Install node
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Cypress run
run: npx cypress run