Skip to content

Commit

Permalink
inital Github Actions file
Browse files Browse the repository at this point in the history
  • Loading branch information
aasimsyed committed Apr 20, 2024
1 parent 7c08778 commit dc8cfe1
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on:
push:
branches:
- feature/integrate-github-actions

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
containers: [1, 2, 3]

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'

- name: Install dependencies
run: npm install

- name: Run tests
run: npx cypress run --record --parallel --group ${{ matrix.containers }}

0 comments on commit dc8cfe1

Please sign in to comment.