Skip to content

NPM 0.1.0 release + Demo Video Links #45

NPM 0.1.0 release + Demo Video Links

NPM 0.1.0 release + Demo Video Links #45

Workflow file for this run

name: Lint
on:
push: null
pull_request: null
workflow_dispatch:
permissions: {}
jobs:
lint:
name: Lint
runs-on: [ubuntu-latest]
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
- name: Load environment variables from lint.env
run: cat .github/lint.env >> $GITHUB_ENV
- name: Super-linter
uses: super-linter/[email protected] # x-release-please-version
env:
# To report GitHub Actions status checks
DISABLE_ERRORS: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}