Update method for accessing list node ref in tag picker to make linte… #311
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: CI | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
role-to-assume: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }} | |
aws-region: eu-west-1 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: "11" | |
distribution: "corretto" | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Build Pluto lambda | |
run: | | |
./scripts/pluto-ci.sh | |
- name: Build Media Atom Maker | |
run: | | |
./scripts/app-ci.sh | |
- name: Compile Scala and upload artifacts to RiffRaff | |
run: | | |
./scripts/scala-ci.sh | |