-
Notifications
You must be signed in to change notification settings - Fork 8
68 lines (62 loc) · 1.87 KB
/
main.yml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: CI
on:
push:
branches: [main, beta, alpha]
pull_request:
types: [assigned, opened, synchronize, reopened]
jobs:
lint-and-test:
name: Linting and testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '14.x'
- name: install dependencies
run: yarn --frozen-lockfile
- name: lint and test
uses: mansagroup/nrwl-nx-action@v2
with:
targets: lint,test
maxParallel: 3
release:
name: Building and releasing project
runs-on: ubuntu-latest
needs: [lint-and-test]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '14.x'
- name: install dependencies
run: yarn --frozen-lockfile
- name: build and release
uses: mansagroup/nrwl-nx-action@v2
env:
GITHUB_TOKEN: ${{ secrets.JERE_RELEASE_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
with:
targets: release
maxParallel: 3
check-fast-forward:
name: Check if fast forwarding is possible
runs-on: ubuntu-latest
needs: [lint, sonar]
if: github.event_name == 'pull_request'
permissions:
contents: read
# We appear to need write permission for both pull-requests and
# issues in order to post a comment to a pull request.
pull-requests: write
issues: write
steps:
- name: Checking if fast forwarding is possible
uses: sequoia-pgp/fast-forward@v1
with:
merge: false
# To reduce the workflow's verbosity, use 'on-error'
# to only post a comment when an error occurs, or 'never' to
# never post a comment. (In all cases the information is
# still available in the step's summary.)
comment: never