Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Jun 1, 2022
1 parent 4554da0 commit 8997ec2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/update-compat-data.yml
Expand Up @@ -31,9 +31,23 @@ jobs:
echo "::set-output name=updated::false" ||
echo "::set-output name=updated::true"
id: updated
- name: Bootstrap
if: steps.updated.outputs.updated == 'true'
run: make bootstrap
- name: Run update script
if: steps.updated.outputs.updated == 'true'
run: make build-compat-data
- name: Update tests
if: steps.updated.outputs.updated == 'true'
run: yarn jest
env:
OVERWRITE: true
- name: Update tests (Babel 8)
if: steps.updated.outputs.updated == 'true'
run: yarn jest
env:
OVERWRITE: true
BABEL_8_BREAKING: true
- name: Commit changes
if: steps.updated.outputs.updated == 'true'
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/update-parser-tests.yml
Expand Up @@ -12,6 +12,7 @@ permissions:

jobs:
createPullRequest:
name: Update compat-table
permissions:
contents: write # for Git to git push
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8997ec2

Please sign in to comment.