Disable engine-strict
as a workaround for dependabot's bug
#531
Workflow file for this run
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: "actions" | |
on: | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
push: | |
branches: | |
- main | |
repository_dispatch: | |
types: | |
- langdata-update | |
jobs: | |
test: | |
timeout-minutes: 15 | |
env: | |
SERVER_ENV: local | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: cache playwright browsers | |
id: playwright-cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/ms-playwright | |
key: playwright-${{ hashFiles('**/package-lock.json') }} | |
- run: npm ci | |
- run: npx playwright install-deps | |
- run: npm run build | |
- run: npm test | |
- run: npm run lint | |
staging: | |
if: ${{ github.ref != 'refs/heads/main' && github.repository_owner == 'xicri' }} | |
timeout-minutes: 10 | |
env: | |
SERVER_ENV: staging | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: superfly/flyctl-actions/setup-flyctl@master | |
- run: npm run stage | |
production: | |
if: ${{ github.ref == 'refs/heads/main' && github.repository_owner == 'xicri' }} | |
needs: test | |
timeout-minutes: 10 | |
env: | |
SERVER_ENV: production | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
CLOUDFLARE_ZONE: ${{ secrets.CLOUDFLARE_ZONE }} | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: npm | |
- uses: superfly/flyctl-actions/setup-flyctl@master | |
- run: npm run release |