awesome-docker/.github/workflows/pull_request.yml

31 lines
837 B
Markdown
Raw Normal View History

2020-04-13 14:15:18 +00:00
name: Pull Requests
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
- uses: actions/setup-node@56899e050abffc08c2b3b61f3ec6a79a9dc3223d
2020-04-13 14:15:18 +00:00
with:
node-version: 12
- uses: actions/cache@0781355a23dac32fd3bac414512f4b903437991a
2020-04-13 14:15:18 +00:00
id: cache
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
2020-04-13 15:59:20 +00:00
# if: steps.cache.outputs.cache-hit != 'true'
2020-04-13 14:15:18 +00:00
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline
2020-11-09 18:30:28 +00:00
- run: npm run test-pr
2020-04-13 15:52:26 +00:00
env:
2020-04-13 14:15:18 +00:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}