Skip to content

Merge branch 'master' of github.com:alii/website #680

Merge branch 'master' of github.com:alii/website

Merge branch 'master' of github.com:alii/website #680

Workflow file for this run

name: 'lint'
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: 'Lint'
runs-on: ubuntu-latest
steps:
- name: Begin CI...
uses: actions/checkout@v2
- name: Use Node 18
uses: actions/setup-node@v2
with:
node-version: 18.x
registry-url: 'https://registry.npmjs.org'
- name: Use cached node_modules
uses: actions/cache@v2
with:
path: node_modules
key: nodeModules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
nodeModules-
- name: Install dependencies
run: yarn install --frozen-lockfile
env:
CI: true
- name: Lint
run: yarn lint
env:
CI: true
- name: Danger
run: yarn danger ci
env:
GITHUB_TOKEN: ${{ secrets.DANGER_TOKEN }}