Skip to content

Commit

Permalink
test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mununki committed Mar 28, 2024
1 parent 30c6232 commit b03fc20
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: test

on:
workflow_dispatch:
pull_request:
branches:
- main

concurrency:
group: test-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

env:
LANG: en_US.UTF-8

jobs:
build-ios:
runs-on: ubuntu-latest

steps:
- name: Check out Git repository
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'

- name: Install dependencies
run: yarn install --immutable

- name: Build
run: yarn build

- name: Test
run: yarn test

0 comments on commit b03fc20

Please sign in to comment.