[READ-ONLY] Mirror of https://github.com/lion-byte/eslint-config. ESLint config for personal projects
eslint-config personal-config
0

Configure Feed

Select the types of activity you want to include in your feed.

ci: Merge pull request #22 from lion-byte/ci/github-actions

Swap to GitHub Actions

authored by

Mark Hernandez and committed by
GitHub
(Feb 17, 2026, 9:36 PM -0600) 52dfa8bb cdb4c7fa

+14 -26
+14
.github/workflows/ci.yml
··· 1 + name: CI 2 + on: 3 + - push 4 + 5 + jobs: 6 + test: 7 + runs-on: ubuntu-latest 8 + steps: 9 + - uses: actions/checkout@v4 10 + - uses: actions/setup-node@v4 11 + with: 12 + node-version: '24' 13 + - run: npm ci 14 + - run: npm test
-26
.travis.yml
··· 1 - language: node_js 2 - 3 - node_js: 4 - - 16 5 - - 14 6 - 7 - install: 8 - - npm ci 9 - 10 - script: npm test 11 - 12 - jobs: 13 - include: 14 - # Define the release stage that runs semantic-release 15 - - stage: release 16 - node_js: lts/* 17 - # Advanced: optionally overwrite your default `script` step to skip the tests 18 - # script: skip 19 - deploy: 20 - provider: script 21 - skip_cleanup: true 22 - script: npm run semantic-release 23 - on: 24 - branch: 25 - - main 26 - - next