-
-
Notifications
You must be signed in to change notification settings - Fork 6
88 lines (88 loc) · 3.3 KB
/
release-actions.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: release-actions
on:
push:
branches:
- main
release:
types:
- created
jobs:
publish:
runs-on: ubuntu-latest
env:
NO_COVERAGE_BADGE_UPDATE: 1
FLAGS: FETCH_SERVICE_DISABLE,POST_CONFIGURE_TEST
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- uses: denoland/setup-deno@v1
with:
deno-version: 'v1.x'
- uses: antongolub/action-setup-bun@v1
- run: |
yarn install
npx playwright install-deps
- run: yarn build
# yarn coverage === c8 + yarn test
- run: yarn coverage
- run: yarn test:deno
- run: yarn test:bun
# rollup is for tests only
- run: rm -rf ./esnext/tests/rollup.js
- name: Package Registry Publish - npm
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor}}@users.noreply.github.com"
npm set "registry=https://registry.npmjs.org/"
npm set "@virtualstate:registry=https://registry.npmjs.org/"
npm set "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}"
npm publish --access=public
continue-on-error: true
env:
YARN_TOKEN: ${{ secrets.YARN_TOKEN }}
NPM_TOKEN: ${{ secrets.YARN_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.YARN_TOKEN }}
- uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://npm.pkg.github.com'
- name: Package Registry Publish - GitHub
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor}}@users.noreply.github.com"
npm set "registry=https://npm.pkg.github.com/"
npm set "@virtualstate:registry=https://npm.pkg.github.com/virtualstate"
npm set "//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}"
npm publish --access=public
env:
YARN_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true
- uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: Package Registry Test - npm
run: |
yarn add --dev @virtualstate/navigation@$(node scripts/log-version.js)
yarn add --dev @virtualstate/navigation-local-build@./node_modules/@virtualstate/navigation
export TEST_CONFIG='{"@virtualstate/navigation/test/imported/path": "@virtualstate/navigation-local-build"}'
yarn test
continue-on-error: true
- uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://npm.pkg.github.com'
- name: Package Registry Test - GitHub
run: |
yarn add --dev @virtualstate/navigation@$(node scripts/log-version.js)
yarn add --dev @virtualstate/navigation-local-build@./node_modules/@virtualstate/navigation
export TEST_CONFIG='{"@virtualstate/navigation/test/imported/path": "@virtualstate/navigation-local-build"}'
yarn test
continue-on-error: true