Skip to content

GitHub Actions Manually #21

GitHub Actions Manually

GitHub Actions Manually #21

name: GitHub Actions Manually
on: [workflow_dispatch]
jobs:
cypress-run:
runs-on: ubuntu-latest
strategy:
matrix:
job: [0, 1, 2]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
run: npm install
- name: Cypress run
run: npm run test