Merge pull request #61 from coder-xiaomo/master #53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run | |
on: [push] | |
env: | |
node_version: "12.x" | |
jobs: | |
run-action: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ env.node_version }} | |
- name: Cache node_modules | |
uses: actions/cache@v1 | |
with: | |
path: node_modules | |
key: ${{ runner.OS }}-node_modules-${{ hashFiles('**//package-lock.json') }} | |
restore-keys: | | |
${{ runner.OS }}-- | |
- name: Install JS dependencies | |
run: ls package-lock.json && npm install || yarn install | |
- name: Build | |
run: npm run build | |
- name: Run action | |
uses: ./ | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
age: '1 second' | |
skip-tags: true | |
skip-recent: 1 | |
create-test-artifact: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Create artifact for testing | |
uses: actions/upload-artifact@master | |
with: | |
name: test-artifacts | |
path: ./ |