Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
103 lines
2.8 KiB
YAML
103 lines
2.8 KiB
YAML
name: "Tests"
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
Test:
|
|
strategy:
|
|
matrix:
|
|
# lowest verison here should also be in `engines` field
|
|
node_version: [16, 18, 'lts/*', '*']
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v4
|
|
- name: Install Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node_version }}
|
|
check-latest: true
|
|
- name: Install Dependencies
|
|
run: npm ci
|
|
- name: Run Unit Tests 👩🏽💻
|
|
run: npm run test:unit
|
|
- name: Run Spec Tests 👩🏽💻
|
|
run: npm run test:specs
|
|
- name: Run UMD Tests 👩🏽💻
|
|
run: npm run test:umd
|
|
- name: Run Types Tests 👩🏽💻
|
|
run: npm run test:types
|
|
|
|
Lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v4
|
|
- name: Install Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 'lts/*'
|
|
- name: Install Dependencies
|
|
run: npm ci
|
|
- name: Lint ✨
|
|
run: npm run test:lint
|
|
|
|
Build:
|
|
name: Build and Test Types
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v4
|
|
- name: Install Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 'lts/*'
|
|
- name: Install Dependencies
|
|
run: npm ci
|
|
- name: Build 🗜️
|
|
run: npm run build
|
|
- name: Run Types Tests 👩🏽💻
|
|
run: npm run test:types
|
|
|
|
Release:
|
|
permissions:
|
|
contents: write
|
|
needs: [Test, Lint, Build]
|
|
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@v3
|
|
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
|