chore(deps-dev): bump word-wrap from 1.2.3 to 1.2.4 #281
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.11.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 }} |