Skip to content

chore(deps-dev): bump the babel group across 1 directory with 2 updates #2344

chore(deps-dev): bump the babel group across 1 directory with 2 updates

chore(deps-dev): bump the babel group across 1 directory with 2 updates #2344

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Lint
uses: actions/setup-node@v3
with:
node-version: lts/*
- run: npm ci
- run: npm run lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Test Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npx playwright install-deps
- run: npm test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: run-${{ matrix.test_number }}
parallel: true
test-finish:
runs-on: ubuntu-latest
needs: test
steps:
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
publish:
runs-on: ubuntu-latest
permissions:
id-token: write
needs: [lint, test]
steps:
- uses: actions/checkout@v3
- name: Publish
uses: actions/setup-node@v3
with:
node-version: lts/*
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run build
- run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
if: contains(github.ref, 'tags/v')