Skip to content

npm: add anvaka

npm: add anvaka #16

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
container:
image: opensuse/tumbleweed
steps:
- uses: actions/checkout@v1.2.0
- name: Add devel repo
run: |
zypper ar https://download.opensuse.org/repositories/devel:/languages:/javascript/openSUSE_Tumbleweed/devel:languages:javascript.repo
- name: Update packages
run: |
zypper --non-interactive --gpg-auto-import-keys ref
- name: Install dependencies
run: zypper --non-interactive --gpg-auto-import-keys install biome
- name: Lint
run: |
biome check .
- name: Format
run: |
biome ci .