Skip to content

Bump json5 from 1.0.1 to 1.0.2 #27

Bump json5 from 1.0.1 to 1.0.2

Bump json5 from 1.0.1 to 1.0.2 #27

Workflow file for this run

name: ci
on:
push:
branches:
- master
- develop
- ci
- github-actions
pull_request:
branches:
- master
jobs:
node:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- "20.x"
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: make
- run: make test_changes
# - run: make test_eslint
- run: make test_node
php:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- "20.x"
php-version:
- "8.1"
- "8.2"
- "8.3"
- "8.4"
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Setup PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- run: make
- run: make test_php
nix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: cachix/install-nix-action@v27
with:
nix_path: nixpkgs=channel:nixos-24.05
- run: nix-build
- run: nix-build nix/ci.nix
nix-flake:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
with:
nix_path: nixpkgs=channel:nixos-24.05
- run: nix build
- run: nix flake check