chore(deps): update dependency wrangler to v3.3.0 #1093
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: test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: {} | |
env: | |
NODE_OPTIONS: --max-old-space-size=4096 | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Master | |
uses: actions/checkout@v3 | |
- name: Setup env | |
uses: the-guild-org/shared-config/setup@main | |
with: | |
nodeVersion: 18 | |
- name: Prettier Check | |
run: yarn prettier:check | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Master | |
uses: actions/checkout@v3 | |
- name: Setup env | |
uses: the-guild-org/shared-config/setup@main | |
with: | |
nodeVersion: 18 | |
- name: ESLint | |
run: yarn lint | |
type-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Master | |
uses: actions/checkout@v3 | |
- name: Setup env | |
uses: the-guild-org/shared-config/setup@main | |
with: | |
nodeVersion: 18 | |
- name: Type Check | |
run: yarn ts:check | |
unit: | |
name: unit / node ${{matrix.node-version}} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16, 18, 20] | |
fail-fast: false | |
steps: | |
- name: Checkout Master | |
uses: actions/checkout@v3 | |
- name: Setup env | |
uses: the-guild-org/shared-config/setup@main | |
with: | |
nodeVersion: ${{ matrix.node-version }} | |
- name: Cache Jest | |
uses: actions/cache@v3 | |
with: | |
path: .cache/jest | |
key: ${{ runner.os }}-${{matrix.node-version}}-jest-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-${{matrix.node-version}}-jest- | |
- name: Test | |
run: yarn test --ci | |
env: | |
CI: true | |
integration: | |
name: integration / node ${{matrix.node-version}} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16, 18, 20] | |
fail-fast: false | |
steps: | |
- name: Checkout Master | |
uses: actions/checkout@v3 | |
- name: Setup env | |
uses: the-guild-org/shared-config/setup@main | |
with: | |
nodeVersion: ${{ matrix.node-version }} | |
- name: Cache Jest | |
uses: actions/cache@v3 | |
with: | |
path: .cache/jest | |
key: ${{ runner.os }}-${{matrix.node-version}}-jest-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-${{matrix.node-version}}-jest- | |
- name: Build Packages | |
run: yarn build | |
- name: Test | |
run: yarn test:integration --ci | |
env: | |
CI: true | |
esm: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Master | |
uses: actions/checkout@v3 | |
- name: Setup env | |
uses: the-guild-org/shared-config/setup@main | |
with: | |
nodeVersion: 18 | |
- name: Build Packages | |
run: yarn build | |
- name: Test ESM | |
run: yarn esm:check |