Skip to content

Calendar poc

Calendar poc #39

Workflow file for this run

name: Lint
on:
pull_request:
types: [opened, reopened, synchronize]
branches: main
env:
NODE_VERSION: '18.13.0'
jobs:
lint:
name: Run linter
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.BOT_ACCESS_TOKEN }}
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install
run: npm install
- name: Lint
run: npm run ng lint