Skip to content

test: add fastlane backend tests #53

test: add fastlane backend tests

test: add fastlane backend tests #53

Workflow file for this run

name: CI
on:
push:
branches:
- "main"
pull_request:
branches:
- "**"
types: [opened, synchronize]
concurrency:
group: build-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
tests:
if: (github.event.action != 'closed' || github.event.pull_request.merged == true)
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install dependencies on Linux
if: runner.os == 'Linux'
run: sudo apt update && sudo apt install build-essential
- name: Install dependencies
run: npm install
- name: Test
run: npm test