Skip to content

Bump @sveltejs/adapter-auto from 1.0.3 to 2.0.1 in /ahb_viewer #95

Bump @sveltejs/adapter-auto from 1.0.3 to 2.0.1 in /ahb_viewer

Bump @sveltejs/adapter-auto from 1.0.3 to 2.0.1 in /ahb_viewer #95

Workflow file for this run

name: Linting
on:
pull_request: {}
push:
branches: main
jobs:
run-linters:
name: Run Linters
strategy:
matrix:
npm-command: ["check", "lint"]
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
with:
submodules: true # necessary for the data
ref: ${{ github.event.workflow_run.head_branch }}
token: ${{ secrets.SUBMODULE_ACCESS_TOKEN }}
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Node.js dependencies
working-directory: "ahb_viewer"
run: npm install
- name: Run ${{ matrix.npm-command }}
working-directory: "ahb_viewer"
run: npm run ${{ matrix.npm-command }}