Last active
November 13, 2023 22:17
-
-
Save mbjelac/1d31c89578e48fbaa8d7e4abe08ce6c1 to your computer and use it in GitHub Desktop.
Github actions frontend tests (cropped)
This file contains hidden or 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
test-frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: szenius/[email protected] | |
with: | |
timezoneLinux: "Europe/Helsinki" | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: 'ui/package.json' | |
cache: 'yarn' | |
cache-dependency-path: ui/yarn.lock | |
- run: yarn | |
working-directory: ui | |
- name: tests | |
run: | | |
yarn test | tee ../fe-test-results.txt | |
working-directory: ui | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment