Feat/metrics : removed conversion, added date display option #1194
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: Test packages | |
on: ['pull_request'] | |
jobs: | |
format: | |
name: Prettier formatting | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
- name: Install root dependencies | |
run: yarn | |
- name: Is formatted | |
run: yarn prettier:check | |
collect_dirs: | |
name: Collect package names | |
runs-on: ubuntu-latest | |
outputs: | |
dirs: ${{ steps.dirs.outputs.dirs }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- id: dirs | |
# This command will list all directories in the packages directory | |
run: echo "dirs=$(ls -d packages/*/ | jq --raw-input --slurp --compact-output 'split("\n")[:-1]')" >> ${GITHUB_OUTPUT} | |
test: | |
needs: collect_dirs | |
name: ${{ matrix.package }} | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
matrix: | |
package: ${{ fromJson(needs.collect_dirs.outputs.dirs) }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install dependencies with Yarn workspaces | |
run: yarn | |
- name: Build | |
run: cd ${{ matrix.package }} && yarn build | |
- name: Lint | |
run: cd ${{ matrix.package }} && yarn lint | |
- name: Test | |
run: | | |
cd ${{ matrix.package }} | |
TEST_ADMIN_UI=true yarn test |