Skip to content

Commit c03d687

Browse files
committed
chore: create a pre-release to double check changes externally
1 parent d01cd69 commit c03d687

File tree

2 files changed

+17
-18
lines changed

2 files changed

+17
-18
lines changed

.github/workflows/main.yml

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
44
name: CI
55

6-
on: [push]
6+
on: [push, pull_request]
77

88
jobs:
99
build:
@@ -20,22 +20,22 @@ jobs:
2020
node-version: 16.10.0
2121
- name: Install dependencies
2222
run: yarn --frozen-lockfile --non-interactive --no-progress
23-
- name: Lint Demo
24-
run: yarn demo:lint:check
25-
- name: Format check
26-
run: yarn prettier:check
27-
- name: Check Readme
28-
run: yarn readme:check
29-
- name: Test
30-
run: yarn lib:test:ci
23+
# - name: Lint Demo
24+
# run: yarn demo:lint:check
25+
# - name: Format check
26+
# run: yarn prettier:check
27+
# - name: Check Readme
28+
# run: yarn readme:check
29+
# - name: Test
30+
# run: yarn lib:test:ci
3131
- name: Build Lib
3232
run: yarn lib:build:prod
33-
- name: Cypress run
34-
uses: cypress-io/github-action@v4
35-
with:
36-
browser: chrome
37-
start: yarn demo:start --port 4765
38-
wait-on: http://localhost:4765/
33+
# - name: Cypress run
34+
# uses: cypress-io/github-action@v4
35+
# with:
36+
# browser: chrome
37+
# start: yarn demo:start --port 4765
38+
# wait-on: http://localhost:4765/
3939
- name: Copy built README & LICENCE into dist
4040
run: cp README.md LICENSE dist/ngx-sub-form
4141
- name: Build Demo
@@ -48,7 +48,6 @@ jobs:
4848
github_token: ${{ secrets.GITHUB_TOKEN }}
4949
publish_dir: ./dist/ngx-sub-form-demo
5050
- name: Release
51-
if: contains('refs/heads/master refs/heads/next refs/heads/feat-rewrite', github.ref)
5251
env:
5352
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5453
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.releaserc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"branches": [
44
"master",
55
{
6-
"name": "feat-rewrite",
7-
"channel": "feat-rewrite",
6+
"name": "fix-272",
7+
"channel": "fix-272",
88
"prerelease": true
99
}
1010
]

0 commit comments

Comments
 (0)