Skip to content

Merge pull request #10 from carbonteq/update-result #16

Merge pull request #10 from carbonteq/update-result

Merge pull request #10 from carbonteq/update-result #16

Workflow file for this run

name: CI (Build & Test)
on:
push:
branches:
- main
pull_request:
branches-ignore:
- 'changeset-release/main'
types:
- opened
- synchronize
jobs:
build:
name: Build and Test
timeout-minutes: 15
runs-on: ubuntu-22.04
if: ${{ github.ref != 'refs/heads/changeset-release/main' }}
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 18
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: Type check
run: yarn tc
- name: Lint
run: yarn lint
- name: Test
run: yarn test