-
Notifications
You must be signed in to change notification settings - Fork 4
50 lines (47 loc) · 1.17 KB
/
ci.yml
File metadata and controls
50 lines (47 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: CI
on:
push:
branches:
- dev
- master
pull_request:
branches:
- dev
- master
types:
- opened
- review_requested
env:
NODE_VERSION: 16
jobs:
lints:
if: ${{ github.repository == 'frontChapter/conference-1400' }}
runs-on: ubuntu-latest
steps:
- name: Check out files from GitHub
uses: actions/checkout@v2
- name: Set up Node ${{ env.NODE_VERSION }}
uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- name: Install dependencies
run: yarn install
- name: Run eslint
run: yarn run lint:eslint
- name: Run stylelint
run: yarn run lint:stylelint
- name: ✅ GOOD JOB 👌
run: echo "✅ GOOD JOB 👌"
mirror:
needs: lints
if: ${{ github.event_name == 'push' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: pixta-dev/repository-mirroring-action@v1
with:
target_repo_url: ${{ secrets.MIRROR_REPO_URL }}
ssh_private_key: ${{ secrets.MIRROR_REPO_SSH_PRIVATE_KEY }}