Bump @adobe/css-tools from 4.3.1 to 4.3.2 #162
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: Run tests | |
on: | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: ~ | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@master | |
- name: yarn install | |
run: docker run --rm -v ${PWD}:/opt/gcds -w /opt/gcds node:20-alpine yarn install | |
- name: yarn build | |
run: docker run --rm -v ${PWD}:/opt/gcds -w /opt/gcds node:20-alpine yarn build | |
- name: go mod vendor | |
run: docker run --rm -v ${PWD}:/go/src/github.com/ha/gcp -w /go/src/github.com/ha/gcp/backend golang:1.21.1-alpine go mod vendor | |
- name: go build linux | |
run: docker run --rm -v ${PWD}:/go/src/github.com/ha/gcp -w /go/src/github.com/ha/gcp/backend golang:1.21.1-alpine go build -buildvcs=false -o ../dist/cassandra-plugin_linux_amd64 . | |
- name: backend tests | |
run: docker run --rm -v ${PWD}:/go/src/github.com/ha/gcp -w /go/src/github.com/ha/gcp/backend golang:1.21.1-alpine go test ./... |