Skip to content

Bump @actions/tool-cache from 1.7.1 to 2.0.1 #15

Bump @actions/tool-cache from 1.7.1 to 2.0.1

Bump @actions/tool-cache from 1.7.1 to 2.0.1 #15

Workflow file for this run

name: ci
on:
push:
jobs:
dirty:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- run: npm ci
- run: npm start
- name: Compare the expected and actual dist/ directories
run: |
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi
test:
runs-on: ubuntu-20.04
needs: [dirty]
steps:
- uses: actions/checkout@v2
- uses: ./