Skip to content

fix: trigger deploy (#572) #6703

fix: trigger deploy (#572)

fix: trigger deploy (#572) #6703

Workflow file for this run

name: CI
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache Node Modules
id: node-cache
uses: actions/cache@v2
with:
path: node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}
- run: npm ci
- run: npx next lint