Bump @babel/traverse from 7.22.10 to 7.23.2 in /packages/eds-tokens #3600
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: Checks | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- develop | |
paths: | |
- 'packages/eds-core-react/**' | |
- 'packages/eds-lab-react/**' | |
- 'packages/eds-data-grid-react/**' | |
- 'packages/eds-tokens/**' | |
- 'packages/eds-icons/**' | |
push: | |
branches: | |
- develop | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
jobs: | |
setup: | |
uses: equinor/design-system/.github/workflows/_setup.yml@develop | |
secrets: inherit | |
with: | |
cacheKey: ${{ github.sha }} | |
checkout_paths: packages/eds-core-react packages/eds-tokens packages/eds-icons packages/eds-lab-react packages/eds-data-grid-react packages/eds-utils | |
packages: | |
name: Process packages | |
runs-on: ubuntu-latest | |
needs: setup | |
steps: | |
- name: Use "setup" cache | |
id: setup-cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
./* | |
~/.pnpm-store | |
key: ${{ github.sha }} | |
- name: Build packages | |
id: build-packages | |
run: node_modules/.bin/pnpm run build | |
- name: Test packages | |
id: test-packages | |
run: node_modules/.bin/pnpm run test | |
- name: Lint packages | |
id: lint-packages | |
run: node_modules/.bin/pnpm run lint:all | |
- name: Type check packages | |
id: type-check-packages | |
run: node_modules/.bin/pnpm run types | |
- name: log-errors-to-slack | |
uses: act10ns/slack@v2 | |
with: | |
status: ${{ job.status }} | |
steps: ${{ toJson(steps) }} | |
if: failure() |