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

Commit efbf573

Browse files
committed
Testing github actions 🚀
1 parent 0d41f09 commit efbf573

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
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+
- github-actions
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!"

0 commit comments

Comments
 (0)