build(deps): bump actions/checkout from 3 to 4 #17
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: CI | |
on: pull_request | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "12" | |
# forbid symlinks | |
- name: "Pre-run validation" | |
run: | | |
symlinks="$(find . -type l)" | |
if [[ -n "$symlinks" ]]; then | |
printf "Aborting: symlinks found:\n%s" "$symlinks"; exit 1 | |
fi | |
# Get local dependencies | |
- run: npm install | |
# Run tests | |
- run: npm run test-all | |
- name: "Run Danger" | |
env: | |
# See https://github.com/danger/danger-js/issues/1042 | |
DANGER_GITHUB_API_BASE_URL: "https://api.github.com" | |
# Danger failing (for example through rate-limiting) shouldn't fail the build | |
run: | | |
TOKEN='ghp_i5wtj1l2AbpFv3OU96w6R' | |
TOKEN+='On3bHOkcV2AmVY6' | |
DANGER_GITHUB_API_TOKEN=$TOKEN yarn danger ci || $( exit 0 ) |