Update CI cache key #1048
Workflow file for this run
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 | |
# Run this workflow every time a new commit pushed to your repository | |
on: | |
push: | |
branches-ignore: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
# Set the job key. The key is displayed as the job name | |
# when a job name is not provided | |
format: | |
# Name the Job | |
name: Format | |
# Set the type of machine to run on | |
runs-on: ubuntu-latest | |
steps: | |
# Checks out a copy of your repository on the ubuntu-latest machine | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
# Make sure the actual branch is checked out when running on pull requests | |
ref: ${{ github.head_ref }} | |
- name: Cache node modules | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ~/.npm | |
key: v1-${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
v1-${{ runner.os }}-build-${{ env.cache-name }}- | |
v1-${{ runner.os }}-build- | |
v1-${{ runner.os }}- | |
- name: Install modules | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: Prettify code | |
uses: creyD/[email protected] | |
with: | |
prettier_options: --write ./src/**/*.{js,svelte} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run ESLint | |
run: npm run lint |