Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit d3154b5

Browse files
authored
Merge pull request #33 from chicio/github-actions 🚀
GitHub actions
2 parents 0d41f09 + 1515955 commit d3154b5

File tree

3 files changed

+28
-13
lines changed

3 files changed

+28
-13
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: fabrizioduroni.it
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
schedule:
8+
- cron: '0 18 * * *'
9+
10+
jobs:
11+
build-and-test:
12+
name: Build and Test
13+
runs-on: macos-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v2
17+
- name: Setup Node
18+
uses: actions/setup-node@v1
19+
with:
20+
node-version: '13'
21+
- name: Build and Test
22+
run: |
23+
npm run setup
24+
npm run test
25+
- name: Lighthouse CI
26+
run: lhci autorun --upload.target=temporary-public-storage || echo "LHCI failed!"

.travis.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# chicio.github.io - www.fabrizioduroni.it
22

3-
[![Build Status](https://travis-ci.org/chicio/chicio.github.io.svg?branch=master)](https://travis-ci.org/chicio/chicio.github.io)
4-
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/chicio/chicio.github.io/blob/master/LICENSE.md)
3+
![fabrizioduroni.it](https://github.com/chicio/chicio.github.io/workflows/fabrizioduroni.it/badge.svg)
54
![dependecies](https://img.shields.io/librariesio/github/chicio/chicio.github.io)
5+
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/chicio/chicio.github.io/blob/master/LICENSE.md)
66

77
My personal website, created using github pages.
88

0 commit comments

Comments
 (0)