Skip to content

build(deps): bump actions/checkout from 6 to 7 #293

build(deps): bump actions/checkout from 6 to 7

build(deps): bump actions/checkout from 6 to 7 #293

Workflow file for this run

name: "Test"
permissions:
contents: read
on:
pull_request:
push:
branches:
- master
- latest
jobs:
communicate-on-pull-request-merged:
name: communicate-on-pull-request-merged
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Run tests
run: |
cd communicate-on-pull-request-merged
npm ci
npm run build
npm test
communicate-on-pull-request-released:
name: communicate-on-pull-request-released
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Run tests
run: |
cd communicate-on-pull-request-released
npm ci
npm run build
npm test
fastlane-env-reminder:
name: fastlane-env-reminder
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Run tests
run: |
cd fastlane-env-reminder
npm ci
npm run build
npm test
lock:
name: lock
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Run tests
run: |
cd lock
npm ci
npm run build
npm test