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 bc90f48 commit ec46ecb
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions .github/workflows/axis-configuration.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

0 comments on commit ec46ecb

Please sign in to comment.