Skip to content

fix(deps): update dependency astro to v7.0.9 #532

fix(deps): update dependency astro to v7.0.9

fix(deps): update dependency astro to v7.0.9 #532

name: OGP Dependencies Checker
on:
pull_request:
types: [opened, synchronize, labeled]
jobs:
build:
# プルリクエストに dependencies ラベルを付けたとき
# dependencies ラベルがついている状態で、 Push したとき
if: |
((github.event.action == 'labeled') &&
(github.event.label.name == 'ogp-dependencies')) ||
((github.event.action == 'synchronize') &&
contains(github.event.pull_request.labels.*.name, 'ogp-dependencies'))
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [latest]
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ matrix.node-version }}
- name: npm ci
run: npm ci
- name: Test
run: npm run test
env:
CI: true