Skip to content

chore: release @web-std/file 3.0.3 (#93) #67

chore: release @web-std/file 3.0.3 (#93)

chore: release @web-std/file 3.0.3 (#93) #67

Workflow file for this run

name: file
on:
push:
branches:
- main
paths:
- "packages/file/**"
pull_request:
branches:
- main
paths:
- "packages/file/**"
- ".github/workflows/file.yml"
jobs:
check:
name: Typecheck
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16
project:
- file
steps:
- uses: actions/checkout@v2
- name: Setup node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
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:
- file
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
uses: bahmutov/npm-install@v1
- name: Test (ES)
run: yarn --cwd packages/${{matrix.project}} test:es
- name: Test (CJS)
run: yarn --cwd packages/${{matrix.project}} test:cjs
- name: Test (Web)
run: yarn --cwd packages/${{matrix.project}} test:web