Skip to content

chore(deps): bump JamesIves/github-pages-deploy-action from 4.6.4 to 4.6.8 #1730

chore(deps): bump JamesIves/github-pages-deploy-action from 4.6.4 to 4.6.8

chore(deps): bump JamesIves/github-pages-deploy-action from 4.6.4 to 4.6.8 #1730

Workflow file for this run

name: Checks
on:
- push
- pull_request
env:
node_version: 18
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- name: install node
uses: actions/setup-node@v4
with:
node-version: ${{ env.node_version }}
- name: Cache Node.js modules
uses: actions/cache@v4
with:
path: .npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies
run: npm ci --cache .npm --prefer-offline
- name: Lint
run: npm run lint