chore(deps-dev): Bump @typescript-eslint/parser from 7.12.0 to 7.13.1 #2915
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: "Tests" | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: read | |
jobs: | |
UnitTests: | |
strategy: | |
matrix: | |
# lowest verison here should also be in `engines` field | |
node_version: [18, "lts/*", "latest"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node_version }} | |
check-latest: true | |
- name: Install Dependencies | |
run: npm ci | |
- name: Build ποΈ | |
run: npm run build | |
- name: Run Unit Tests π©π½βπ» | |
run: npm run test:unit | |
- name: Run Spec Tests π©π½βπ» | |
run: npm run test:specs | |
OtherTests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
- name: Install Dependencies | |
run: npm ci | |
- name: Build ποΈ | |
run: npm run build | |
- name: Run UMD Tests π©π½βπ» | |
run: npm run test:umd | |
- name: Run Types Tests π©π½βπ» | |
run: npm run test:types | |
- name: Lint β¨ | |
run: npm run test:lint | |
Release: | |
permissions: | |
contents: write | |
id-token: write | |
needs: [UnitTests, OtherTests] | |
if: | | |
github.ref == 'refs/heads/master' && | |
github.event.repository.fork == false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
- name: Install Dependencies | |
run: npm ci | |
- name: Build ποΈ | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: | | |
export SEMANTIC_RELEASE_NEXT_VERSION=$(npx semantic-release --no-ci --dry-run | grep -oP 'The next release version is \K[0-9]+\.[0-9]+\.[0-9]+') | |
echo "Next Version: $SEMANTIC_RELEASE_NEXT_VERSION" | |
npm run build | |
if ! git diff --quiet; then | |
git config --global user.email "<>" | |
git config --global user.name "MarkedJS bot" | |
git commit -am "ποΈ build v$SEMANTIC_RELEASE_NEXT_VERSION [skip ci]" | |
fi | |
- name: Release π | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npx semantic-release |