Make pack generation import statement commitable #1952
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: JS unit tests for Renderer package | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
node: [16, 20] | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Print system information | |
run: | | |
echo "Linux release: "; cat /etc/issue | |
echo "Current user: "; whoami | |
echo "Current directory: "; pwd | |
echo "Node version: "; node -v | |
echo "Yarn version: "; yarn --version | |
- name: Save root node_modules to cache | |
uses: actions/cache@v3 | |
with: | |
path: node_modules | |
key: v5-package-node-modules-cache-${{ hashFiles('yarn.lock') }} | |
- name: Install Node modules with Yarn for renderer package | |
run: | | |
yarn install --no-progress --no-emoji | |
yarn run eslint -v | |
sudo yarn global add yalc | |
- name: Run JS unit tests for Renderer package | |
run: yarn test |