Skip to content

CI update

CI update #5

Workflow file for this run

name: CI
on:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.15.0]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Create .env file
run: |
echo "${{ secrets.DOTENV }}" > .env
- name: Install
run: npm install
working-directory: ./mobile
- name: Test
run: npm test
working-directory: ./mobile