Skip to content

fix(deps): update dependency astro to v4.10.2 #151

fix(deps): update dependency astro to v4.10.2

fix(deps): update dependency astro to v4.10.2 #151

Workflow file for this run

name: CI test
on:
pull_request:
branches:
- main
paths:
- 'src/**'
- 'package.json'
- 'package-lock.json'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm ci
run: npm ci
- name: Prettier
run: npm run prettier
- name: Textlint
run: npm run textlint
- name: build check
run: npm run build
env:
CI: true