Build and use local libauth #12
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: Lint, Build, and Test Bitauth IDE | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: yarn install --immutable --immutable-cache | |
- run: yarn test:lint | |
prod-e2e: | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/playwright:v1.41.0-jammy | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
# The "preinstall" script runs "git submodule update --init --recursive" | |
# to avoid requiring users to understand this project's submodules | |
# configuration. Since the files are owned by a different user than the | |
# GitHub Action runner (a quirk of GitHub Actions), updating the | |
# submodules again would error: `fatal: detected dubious ownership in repository at '/__w/bitauth-ide/bitauth-ide'` | |
# We can safely disable this check for CI. | |
- run: git config --global --add safe.directory '*' | |
- run: yarn install --immutable --immutable-cache | |
- run: yarn build | |
- run: yarn test:e2e:prod | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: dist | |
path: dist/ | |
retention-days: 90 | |
- uses: codecov/codecov-action@v3 | |
dev-e2e-and-coverage: | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/playwright:v1.41.0-jammy | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: git config --global --add safe.directory '*' | |
- run: yarn install --immutable --immutable-cache | |
- run: yarn test:e2e | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 90 | |
- uses: codecov/codecov-action@v3 |