Fix typo #276
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: | |
push: | |
paths-ignore: | |
- "docs/**" | |
- ".gitignore" | |
- "CHANGELOG.md" | |
- "LICENSE" | |
- "README.md" | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-20.04 | |
container: | |
# Source: https://github.com/day8/dockerfiles-for-dev-ci-images | |
image: ghcr.io/day8/chrome-56:2 | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
# All of the Git history is required for day8/lein-git-inject to determine the version string. | |
fetch-depth: 0 | |
- name: Maven cache | |
uses: actions/cache@v2 | |
with: | |
path: /root/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('project.clj', '.github/workflows/**') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: npm cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-npm-${{ hashFiles('project.clj') }}-${{ hashFiles('**/package.json') }} | |
restore-keys: | | |
${{ runner.os }}-npm- | |
- name: Test Templates | |
run: ./create-templates.sh | |
- name: Slack notification | |
uses: homoluctus/slatify@v2.0.1 | |
if: failure() || cancelled() | |
with: | |
type: ${{ job.status }} | |
job_name: re-frame-template Tests | |
channel: '#oss-robots' | |
url: ${{ secrets.SLACK_WEBHOOK }} | |
commit: true | |
token: ${{ secrets.GITHUB_TOKEN }} |