chore(deps): bump micromatch from 4.0.2 to 4.0.8 #62
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
# This is a Github Workflow that runs tests on any push or pull request. | |
# If the tests pass and this is a push to the master branch it also runs Semantic Release. | |
name: CI | |
on: [push, pull_request] | |
jobs: | |
test_pr: | |
if: github.event_name == 'pull_request' | |
name: Test PR (Node v${{ matrix.node-version }}, OS ${{ matrix.os }}) | |
strategy: | |
matrix: | |
os: [ ubuntu-22.04 ] | |
node-version: [ 14, 18 ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Fetch deps | |
run: yarn | |
- name: Run tests | |
# Workaround like TRAVIS_PULL_REQUEST_BRANCH=master | |
run: | | |
git branch master | |
yarn test | |
release: | |
name: Release | |
# https://github.community/t/trigger-job-on-tag-push-only/18076 | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Fetch deps | |
run: yarn | |
- name: Semantic Release | |
run: npx semantic-release -b master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
# GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }} | |
# GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }} | |
# GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }} | |
# GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} |