build(deps-dev): bump @babel/core from 7.23.7 to 7.23.9 #326
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: CI | |
on: | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: | |
- 20 | |
steps: | |
- name: ⬇️ Checkout | |
uses: actions/checkout@v2 | |
- name: ⎔ Setup node ${{ matrix.node }} | |
uses: actions/setup-node@v2 | |
with: | |
cache: npm | |
- name: 📥 Download deps | |
run: npm ci | |
- name: 🧪 Run lint | |
run: npm run lint | |
build: | |
permissions: | |
actions: write # for styfle/cancel-workflow-action to cancel/stop running workflows | |
checks: write # for coverallsapp/github-action to create new checks | |
contents: read # for actions/checkout to fetch code | |
runs-on: ${{ matrix.os }} | |
needs: lint | |
strategy: | |
fail-fast: false | |
matrix: | |
node: | |
- 16 | |
- 18 | |
- 20 | |
os: [ubuntu-latest] | |
browser: | |
- FirefoxHeadless | |
include: | |
- os: windows-latest | |
node: 20 | |
browser: FirefoxHeadless | |
steps: | |
- name: 🛑 Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.9.1 | |
with: | |
access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: ⬇️ Checkout | |
uses: actions/checkout@v2 | |
- name: ⎔ Setup node ${{ matrix.node }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: npm | |
- name: 📥 Download deps | |
run: npm ci | |
- name: Run coverage | |
run: npm test | |
- name: Run browser tests | |
if: matrix.node == 20 | |
run: npm run mocha-browser-test -- --browsers ${{ matrix.browser }} --timeout 10000 | |
env: | |
DISPLAY: :99.0 | |
- name: Coverage | |
if: matrix.os == 'ubuntu-latest' && matrix.node == '20' | |
run: npm run coverage && npx nyc report --reporter=lcov | |
- name: Coveralls | |
if: matrix.os == 'ubuntu-latest' && matrix.node == '20' | |
uses: coverallsapp/github-action@1.1.3 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |