chore: add auto-deployment via Changesets #155
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: fetch | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "packages/fetch/**" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "packages/fetch/**" | |
- ".github/workflows/fetch.yml" | |
jobs: | |
check: | |
name: Typecheck | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
- 16 | |
project: | |
- fetch | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup node ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install | |
uses: bahmutov/npm-install@v1 | |
- name: Typecheck | |
uses: gozala/[email protected] | |
with: | |
project: packages/${{matrix.project}}/tsconfig.json | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: | |
- 14 | |
- 16 | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
project: | |
- fetch | |
exclude: | |
- os: windows-latest | |
node-version: 14 | |
# On macOS, run tests with only the LTS environments. | |
- os: macos-latest | |
node-version: 14 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install | |
uses: bahmutov/npm-install@v1 | |
- name: Test (ESM) | |
run: yarn --cwd packages/${{matrix.project}} test -- --colors | |
# upload coverage only once | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
if: matrix.node == '14' && matrix.os == 'ubuntu-latest' | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Test (CJS) | |
run: yarn --cwd packages/${{matrix.project}} test:cjs |