Skip to content

chore(deps-dev): bump tar from 7.5.1 to 7.5.3 #158

chore(deps-dev): bump tar from 7.5.1 to 7.5.3

chore(deps-dev): bump tar from 7.5.1 to 7.5.3 #158

Workflow file for this run

name: Run-Tests
on:
pull_request:
branches:
- main
- next
jobs:
run-tests:
runs-on: windows-latest
permissions: write-all
# Steps are duplicated in release.yml. Changes made here may need to be made in both
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Node
uses: actions/setup-node@v4
with:
# Keep in sync with the version specified for volta in the root package.json
node-version: 22
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm install
- name: Install playwright browsers for e2e tests
run: npx playwright install chromium --with-deps
- name: Build package
run: npx nx build @ethnolib/language-chooser-react-mui
# find-language is a dependency of language-chooser-react-mui so it will have been built in the build step
- name: Run unit tests
run: npx nx run-many --all --target=test
- name: Run e2e tests
run: npx nx run-many --all --target=e2e