Skip to content

Transform Setup[1/3] - Structure as Vanilla Extract's types #39

Transform Setup[1/3] - Structure as Vanilla Extract's types

Transform Setup[1/3] - Structure as Vanilla Extract's types #39

Workflow file for this run

name: CI
# This action works with pull requests and pushes
on: [push, pull_request]
jobs:
pre_job:
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check SkipAction
id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: same_content_newer
skip_after_successful_duplicate: "true"
paths_ignore: '["**/README.md"]'
build:
needs: pre_job
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/node-setup
- name: Workflow lint
run: yarn lint:action
- name: Test
run: yarn test:all