Skip to content

Commit

Permalink
chore: GH actions test
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiehenson committed Mar 15, 2024
1 parent 7e76b1c commit 916ff89
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 90 deletions.
90 changes: 0 additions & 90 deletions .circleci/config.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run linters and Cypress

on:
push:
branches-ignore:
- "gh-pages"
pull_request:
branches:
- main

jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 16
- name: Install Node.js dependencies
run: yarn
- name: Run linters
uses: wearerequired/lint-action@v2
with:
eslint: true
prettier: true
- name: Cypress run
uses: cypress-io/github-action@v6

0 comments on commit 916ff89

Please sign in to comment.