[WIP] feat: new generator for React-Native with expo #262
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: CI | |
on: | |
pull_request: | |
release: | |
types: [created] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
node-version: ['lts/*', 'current'] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: yarn install | |
- run: yarn build | |
- run: yarn test | |
- run: yarn lint | |
- name: Install Playwright Browsers | |
run: yarn playwright install --with-deps | |
- run: yarn test-gen | |
- run: yarn test-next-app | |
- run: yarn test-react-app | |
- run: yarn test-vue-app | |
- env: | |
NODE_OPTIONS: --openssl-legacy-provider | |
run: yarn test-nuxt-app | |
- run: yarn test-gen-env | |
- run: yarn test-gen-openapi3 | |
- run: yarn check | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 |