Add Transaction for rollback #18
Workflow file for this run
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
name: tracker | |
on: | |
push: | |
branches: ['master'] | |
paths: ['tracker/**'] | |
pull_request: | |
branches: ['master'] | |
paths: ['tracker/**'] | |
jobs: | |
build-frontend: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
name: Build on ${{ matrix.os }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'npm' | |
cache-dependency-path: tracker/frontend/package-lock.json | |
- name: Install frontend dependencies | |
run: npm ci | |
working-directory: tracker/frontend | |
- name: Build frontend | |
run: npm run build | |
working-directory: tracker/frontend |