fix: added type button to pop up button for html block editor (#474) #1553
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: [push] | |
jobs: | |
core: | |
runs-on: ubuntu-latest | |
name: Tests | |
timeout-minutes: 45 | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v3 | |
# node setup | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: yarn | |
# node install | |
- run: yarn --immutable | |
- name: Jest tests | |
run: yarn test | |
# Bundlewatch | |
# - run: yarn build | |
# - uses: jackyef/bundlewatch-gh-action@master | |
# with: | |
# bundlewatch-github-token: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }} |