Skip to content

Merge remote-tracking branch 'origin/rewrite-axios-adapter' into test… #12

Merge remote-tracking branch 'origin/rewrite-axios-adapter' into test…

Merge remote-tracking branch 'origin/rewrite-axios-adapter' into test… #12

Workflow file for this run

on: push
name: CI
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18.x"
registry-url: https://registry.npmjs.org
- uses: actions/cache@v2
id: yarn-unplugged-cache
with:
path: |
'.yarn/unplugged/'
'.yarn/build-state.yml'
'.yarn/install-state.gz'
key: ${{ runner.os }}-yarn-v1-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-v1-
- name: Install unplugged dependencies and check immutable
run: |
yarn install --immutable
shell: bash
- name: Run tests and check types
run: |
yarn test
yarn typecheck
shell: bash