Skip to content

chore(deps): bump core-js from 3.35.1 to 3.37.0 #1423

chore(deps): bump core-js from 3.35.1 to 3.37.0

chore(deps): bump core-js from 3.35.1 to 3.37.0 #1423

Workflow file for this run

name: Test, publish
on: [push, pull_request]
jobs:
test:
name: Test
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
- name: Lint
run: |
yarn
yarn lint
- name: Test
run: |
yarn
yarn test
publish:
name: Publish
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
needs: [test]
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
- name: Publish
run: yarn; yarn build:lib; npx semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}