File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 99
1010jobs :
1111 lockfile :
12- if : ${{ !startsWith(github.head_ref , 'refs/heads/changeset-release/') }}
12+ if : ${{ !startsWith(github.ref , 'refs/heads/changeset-release/') }}
1313 name : Lockfile
1414 runs-on : ubuntu-latest
1515
2626 run : pnpm install --frozen-lockfile
2727
2828 linting :
29- if : ${{ !startsWith(github.head_ref , 'refs/heads/changeset-release/') }}
29+ if : ${{ !startsWith(github.ref , 'refs/heads/changeset-release/') }}
3030 name : Linting
3131 runs-on : ubuntu-latest
3232
4141 run : pnpm lint
4242
4343 type-checking :
44- if : ${{ !startsWith(github.head_ref , 'refs/heads/changeset-release/') }}
44+ if : ${{ !startsWith(github.ref , 'refs/heads/changeset-release/') }}
4545 name : Type checking
4646 runs-on : ubuntu-latest
4747
5959 run : pnpm typecheck:flow
6060
6161 testing :
62- if : ${{ !startsWith(github.head_ref , 'refs/heads/changeset-release/') }}
62+ if : ${{ !startsWith(github.ref , 'refs/heads/changeset-release/') }}
6363 name : Testing
6464 needs : [lockfile, linting, type-checking]
6565 runs-on : ubuntu-latest
8585 run : pnpm test:integration
8686
8787 regression-testing :
88- if : ${{ !startsWith(github.head_ref , 'refs/heads/changeset-release/') }}
88+ if : ${{ !startsWith(github.ref , 'refs/heads/changeset-release/') }}
8989 name : Regression Testing
9090 needs : [testing]
9191 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments