Skip to content

chore(deps-dev): bump eslint-plugin-astro from 0.34.0 to 1.2.3 #8

chore(deps-dev): bump eslint-plugin-astro from 0.34.0 to 1.2.3

chore(deps-dev): bump eslint-plugin-astro from 0.34.0 to 1.2.3 #8

Workflow file for this run

name: ci
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
jobs:
lint:
name: Check for build and type issues
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: install node
uses: actions/setup-node@v3
with:
node-version: 20.15.3
- name: Install dependencies
run: npm install
# use astro check for issues
- name: Run check
run: npm astro check
# ensure build works
- name: Run build
run: npm build