Skip to content

Merge branch 'main' of github.com:rdlabo-team/ionic-angular-collect-i… #82

Merge branch 'main' of github.com:rdlabo-team/ionic-angular-collect-i…

Merge branch 'main' of github.com:rdlabo-team/ionic-angular-collect-i… #82

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: write
pull-requests: write
packages: write
# Automatically cancel in-progress actions on the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Unit Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- run: npm ci
- run: npm test