Skip to content

chore(deps-dev): bump @babel/traverse from 7.19.3 to 7.23.2 (#1371) #284

chore(deps-dev): bump @babel/traverse from 7.19.3 to 7.23.2 (#1371)

chore(deps-dev): bump @babel/traverse from 7.19.3 to 7.23.2 (#1371) #284

Workflow file for this run

name: Production workflow
on:
push:
branches:
- main
- master
paths-ignore:
- 'website/**'
- '**/*.md'
- '**/*.mdx'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout
uses: actions/checkout@v3
- name: ⎔ Setup node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
cache: npm
- name: 📥 Download deps
run: npm ci
- name: 🧪 Run lint
run: npm run lint
build:
runs-on: ${{ matrix.os }}
needs: lint
strategy:
fail-fast: false
matrix:
node:
- 14
- 16
- 18
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.0
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: ⬇️ Checkout
uses: actions/checkout@v3
- name: ⎔ Setup node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
- name: 📥 Download deps
run: npm ci
- name: 🏗 Build
run: npm run build
- name: Ensure no git changes
run: git diff --exit-code
- name: Run tests
if: matrix.node != '16' || matrix.os != 'ubuntu-latest'
uses: nick-invision/retry@v2
with:
timeout_minutes: 20
max_attempts: 3
command: npm run test
- name: Run coverage
if: matrix.node == '16' && matrix.os == 'ubuntu-latest'
uses: nick-invision/retry@v2
with:
timeout_minutes: 20
max_attempts: 3
command: npm run test:coverage
- name: ⬆️ Upload coverage to Codecov
if: matrix.node == '16' && matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v3
with:
files: ./coverage/coverage-final.json
name: codecov-prod
release:
if: ${{ github.repository == 'htmlhint/HTMLHint' &&
contains('refs/heads/master,refs/heads/beta,refs/heads/next,refs/heads/alpha',
github.ref) && github.event_name == 'push' }}
runs-on: ubuntu-latest
needs: build
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
cache: npm
- name: 📥 Download deps
run: npm ci
- name: 🏗 Build
run: npm run build
- name: 🚢 Release
uses: cycjimmy/semantic-release-action@v3
with:
extra_plugins: |
@semantic-release/changelog
@semantic-release/git
branches: |
[
'master',
'next',
'next-major',
{name: 'beta', prerelease: true},
{name: 'alpha', prerelease: true}
]
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}