chore: added release-log link in controlpanel #1448
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: [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 }} |