Bump braces from 3.0.2 to 3.0.3 #115
Workflow file for this run
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: MORE CI FOR THE CI GOD! | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- edited | |
- synchronize | |
jobs: | |
quality_checking_and_publishing: | |
name: quality_checking_and_publishing | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@master | |
- name: Set up Node.js | |
uses: actions/setup-node@master | |
with: | |
node-version: 20 | |
registry-url: https://registry.npmjs.org/ | |
- name: Check license | |
run: node tools/check_license.cjs | |
- name: Install dependencies | |
run: npm ci | |
- name: Audit vulnerabilities | |
run: npm run audit | |
- name: Linting | |
run: npm run lint_ci | |
- name: Build | |
run: npm run build | |
- name: Test | |
run: npm run test_coverage | |
- name: Calculate (and check) Coverage | |
run: | | |
echo "COVERAGE=$(node tools/check_coverage.cjs)" >> $GITHUB_ENV | |
echo "COVERAGE_COLOR=$(node tools/get_coverage_color.cjs)" >> $GITHUB_ENV | |
- name: Create Coverage Badge | |
uses: schneegans/[email protected] | |
with: | |
auth: ${{ secrets.GIST_SECRET }} | |
gistID: ${{ secrets.GIST_ID }} | |
filename: fev_coverage.json | |
label: coverage | |
message: ${{ env.COVERAGE }} | |
color: ${{ env.COVERAGE_COLOR }} | |
namedLogo: mocha | |
logoColor: white | |
- if: github.ref == 'refs/heads/master' | |
name: Check published versions | |
run: echo "NEED_PUBLISH=$(node tools/publish.helper.cjs)" >> $GITHUB_ENV | |
- if: ${{ env.NEED_PUBLISH == 'true' }} | |
name: Remove a dist folder from gitignore | |
run: sed -i '$ d' .gitignore | |
- if: ${{ env.NEED_PUBLISH == 'true' }} | |
name: Publish | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} |