Skip to content

Commit

Permalink
chore(ci): only run workflow on node.js lts
Browse files Browse the repository at this point in the history
  • Loading branch information
FantasticFiasco committed Aug 14, 2024
1 parent ec46ecb commit 55c5327
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 78 deletions.
18 changes: 5 additions & 13 deletions .github/workflows/axis-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,20 @@ defaults:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 21.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: lts/*
check-latest: true
- run: echo -e "$(curl --silent https://raw.githubusercontent.com/FantasticFiasco/logo/master/logo.ansi)"
- run: yarn install --immutable --immutable-cache
- run: yarn build
- run: yarn test
- run: ESLINT_USE_FLAT_CONFIG=false yarn lint
- run: |
if [ ${{ matrix.node-version }} == 16.x ]; then
pushd ../..
yarn install --immutable --immutable-cache
node ./scripts/publish-on-tag.js
popd
fi
cd ../..
yarn install --immutable --immutable-cache
node ./scripts/publish-on-tag.js
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
18 changes: 5 additions & 13 deletions .github/workflows/axis-discovery-bonjour.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,20 @@ defaults:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 21.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: lts/*
check-latest: true
- run: echo -e "$(curl --silent https://raw.githubusercontent.com/FantasticFiasco/logo/master/logo.ansi)"
- run: yarn install --immutable --immutable-cache
- run: yarn build
- run: yarn test
- run: ESLINT_USE_FLAT_CONFIG=false yarn lint
- run: |
if [ ${{ matrix.node-version }} == 16.x ]; then
pushd ../..
yarn install --immutable --immutable-cache
node ./scripts/publish-on-tag.js
popd
fi
cd ../..
yarn install --immutable --immutable-cache
node ./scripts/publish-on-tag.js
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
18 changes: 5 additions & 13 deletions .github/workflows/axis-discovery-ssdp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,20 @@ defaults:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 21.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: lts/*
check-latest: true
- run: echo -e "$(curl --silent https://raw.githubusercontent.com/FantasticFiasco/logo/master/logo.ansi)"
- run: yarn install --immutable --immutable-cache
- run: yarn build
- run: yarn test
- run: ESLINT_USE_FLAT_CONFIG=false yarn lint
- run: |
if [ ${{ matrix.node-version }} == 16.x ]; then
pushd ../..
yarn install --immutable --immutable-cache
node ./scripts/publish-on-tag.js
popd
fi
cd ../..
yarn install --immutable --immutable-cache
node ./scripts/publish-on-tag.js
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
18 changes: 5 additions & 13 deletions .github/workflows/axis-discovery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,20 @@ defaults:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 21.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: lts/*
check-latest: true
- run: echo -e "$(curl --silent https://raw.githubusercontent.com/FantasticFiasco/logo/master/logo.ansi)"
- run: yarn install --immutable --immutable-cache
- run: yarn build
- run: yarn test
- run: ESLINT_USE_FLAT_CONFIG=false yarn lint
- run: |
if [ ${{ matrix.node-version }} == 16.x ]; then
pushd ../..
yarn install --immutable --immutable-cache
node ./scripts/publish-on-tag.js
popd
fi
cd ../..
yarn install --immutable --immutable-cache
node ./scripts/publish-on-tag.js
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
18 changes: 5 additions & 13 deletions .github/workflows/axis-maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,20 @@ defaults:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 21.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: lts/*
check-latest: true
- run: echo -e "$(curl --silent https://raw.githubusercontent.com/FantasticFiasco/logo/master/logo.ansi)"
- run: yarn install --immutable --immutable-cache
- run: yarn build
- run: yarn test
- run: ESLINT_USE_FLAT_CONFIG=false yarn lint
- run: |
if [ ${{ matrix.node-version }} == 16.x ]; then
pushd ../..
yarn install --immutable --immutable-cache
node ./scripts/publish-on-tag.js
popd
fi
cd ../..
yarn install --immutable --immutable-cache
node ./scripts/publish-on-tag.js
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
18 changes: 5 additions & 13 deletions .github/workflows/axis-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,20 @@ defaults:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 21.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: lts/*
check-latest: true
- run: echo -e "$(curl --silent https://raw.githubusercontent.com/FantasticFiasco/logo/master/logo.ansi)"
- run: yarn install --immutable --immutable-cache
- run: yarn build
- run: yarn test
- run: ESLINT_USE_FLAT_CONFIG=false yarn lint
- run: |
if [ ${{ matrix.node-version }} == 16.x ]; then
pushd ../..
yarn install --immutable --immutable-cache
node ./scripts/publish-on-tag.js
popd
fi
pushd ../..
yarn install --immutable --immutable-cache
node ./scripts/publish-on-tag.js
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 55c5327

Please sign in to comment.