Merge pull request #147 from GenerationSoftware/production #195
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: [push] | |
env: | |
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }} | |
NEXT_PUBLIC_LOCIZE_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_LOCIZE_PROJECT_ID }} | |
LOCIZE_PROJECTID: ${{ secrets.NEXT_PUBLIC_LOCIZE_PROJECT_ID }} | |
NEXT_PUBLIC_LOCIZE_VERSION: ${{ secrets.NEXT_PUBLIC_LOCIZE_VERSION }} | |
LOCIZE_VERSION: ${{ secrets.NEXT_PUBLIC_LOCIZE_PROJECT_ID }} | |
NEXT_PUBLIC_SENTRY_DSN: ${{ secrets.NEXT_PUBLIC_SENTRY_DSN }} | |
jobs: | |
build: | |
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: ['16.x'] | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Use Node ${{ matrix.node }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install deps and build (with cache) | |
uses: bahmutov/npm-install@v1 | |
- name: Lint | |
run: yarn lint | |
- name: Build | |
run: yarn build |