Skip to content

Commit

Permalink
Migrate to GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
NoelDeMartin committed Nov 24, 2023
1 parent 1c2ad0c commit ce0d740
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 37 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on: [push, pull_request]

jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- run: npm ci
- run: npm ci
working-directory: solid-server
- run: npm run lint
- run: npm run build
- run: npm run test
- run: npm run cy:test
- name: Upload Cypress screenshots
uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: cypress_screenshots
path: cypress/screenshots
36 changes: 0 additions & 36 deletions .semaphore/semaphore.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Umai [![Build Status](https://noeldemartin.semaphoreci.com/badges/umai/branches/main.svg)](https://noeldemartin.semaphoreci.com/projects/umai)
# Umai ![CI](https://github.com/NoelDeMartin/umai/actions/workflows/ci.yml/badge.svg)

<p align="center">
<img src="./docs/logo.png" alt="Umai logo">
Expand Down

0 comments on commit ce0d740

Please sign in to comment.