Skip to content

Main

Main #418

Workflow file for this run

name: Main
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
push:
branches:
- main
permissions:
actions: write
contents: read
id-token: write
jobs:
build:
runs-on: ubuntu-latest
container: node:12.16.1-alpine
name: Node
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install dependencies
run: apk update && apk add curl git bash
- name: Install qlty
shell: bash
run: |
curl https://qlty.sh/install.sh | bash
- name: Run qlty
shell: bash
run: |
pwd
env
ls -al
export GIT_DISCOVERY_ACROSS_FILESYSTEM=1
git status
qlty --version