mirror of
https://github.com/actions/checkout.git
synced 2026-08-07 10:30:51 +07:00
Compare commits
31 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 096b500552 | |||
| 59bb2dd7cd | |||
| 093dbebc2e | |||
| d79ea53307 | |||
| 0fa906a067 | |||
| 0b63af4c8c | |||
| 31d9a4bd37 | |||
| 154a05918b | |||
| 7a2b445a4b | |||
| eed20d30d5 | |||
| 4a1fa615de | |||
| 19fb09ae8f | |||
| bb56c8569a | |||
| ba329ee889 | |||
| a039094e93 | |||
| 64fcc0c59a | |||
| 35bb830cfd | |||
| 54a7542872 | |||
| 8ade6aebfa | |||
| bf32513e49 | |||
| 675d935214 | |||
| e7d8850882 | |||
| 1475d13f7a | |||
| 34b9c46c61 | |||
| 255d69d4c5 | |||
| c124b3fb75 | |||
| afff79a5a2 | |||
| 306dc1c898 | |||
| d415b27760 | |||
| 4af80cb867 | |||
| ad6dd29a96 |
+59
-58
@@ -6,31 +6,32 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
- releases/*
|
- releases/*
|
||||||
|
- users/ericsciple/*
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1 # todo: switch to v2
|
- uses: actions/checkout@v2-beta
|
||||||
- run: npm ci
|
# - run: npm ci
|
||||||
- run: npm run build
|
# - run: npm run build
|
||||||
- run: npm run format-check
|
# - run: npm run format-check
|
||||||
- run: npm run lint
|
# - run: npm run lint
|
||||||
- run: npm run pack
|
# - run: npm run pack
|
||||||
- run: npm run gendocs
|
# - run: npm run gendocs
|
||||||
- name: Verify no unstaged changes
|
# - name: Verify no unstaged changes
|
||||||
run: __test__/verify-no-unstaged-changes.sh
|
# run: __test__/verify-no-unstaged-changes.sh
|
||||||
|
|
||||||
test:
|
# test:
|
||||||
strategy:
|
# strategy:
|
||||||
matrix:
|
# matrix:
|
||||||
runs-on: [ubuntu-latest, macos-latest, windows-latest]
|
# runs-on: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
runs-on: ${{ matrix.runs-on }}
|
# runs-on: ${{ matrix.runs-on }}
|
||||||
|
|
||||||
steps:
|
# steps:
|
||||||
# Clone this repo
|
# # Clone this repo
|
||||||
- name: Checkout
|
|||||||