Skip to content

Instantly share code, notes, and snippets.

@mbjelac
Last active November 13, 2023 22:17
Show Gist options
  • Save mbjelac/1d31c89578e48fbaa8d7e4abe08ce6c1 to your computer and use it in GitHub Desktop.
Save mbjelac/1d31c89578e48fbaa8d7e4abe08ce6c1 to your computer and use it in GitHub Desktop.
Github actions frontend tests (cropped)
test-frontend:
runs-on: ubuntu-latest
steps:
- uses: szenius/set-timezone@v1.2
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