Skip to content

Bump astro from 2.3.2 to 2.3.4 #189

Bump astro from 2.3.2 to 2.3.4

Bump astro from 2.3.2 to 2.3.4 #189

Workflow file for this run

name: lint
on:
push:
branches:
- main
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
# check the node version from the .node-version file
- name: fetch node version
id: node-version
run: |
version=$(cat .node-version)
echo "version=${version}" >> $GITHUB_OUTPUT
- name: setup node
uses: actions/setup-node@v3
with:
node-version: ${{ steps.node-version.outputs.version }}
cache: npm
- name: install dependencies
run: npm ci
- name: format
run: npm run format-ci
- name: lint
run: npm run lint:eslint