forked from reimagined/resolve
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (38 loc) · 1.06 KB
/
Copy pathpush-dev.yml
File metadata and controls
46 lines (38 loc) · 1.06 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
name: dev (push)
on:
push:
branches:
- dev
jobs:
e2e-mac:
runs-on: [self-hosted, macOS, X64, resolve-mac-mini]
steps:
- uses: actions/checkout@v2
- name: Install
run: yarn install --frozen-lockfile
- name: Test:e2e (mac:safari)
env:
RESOLVE_E2E_TESTS_BROWSER: safari
RESOLVE_E2E_TESTS_HEADLESS_MODE: false
DEBUG: resolve:scripts*
DEBUG_LEVEL: debug
run: yarn test:e2e
publish-dev:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v2
- name: Install & Build
run: |
echo "installing packages and building the repository"
yarn install --frozen-lockfile
- name: Publish to private repository
uses: reimagined/github-actions/publish@v1
with:
registry: github
token: ${{ secrets.RESOLVE_BOT_PAT }}
version: auto
build: ${{ github.sha }}
tag: dev
unpublish: false
github_target_repository: resolve-js/resolve