Bump @babel/preset-env from 7.23.7 to 7.24.4 #606
Workflow file for this run
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: Tales CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '^1.14.3' | |
- name: Cache node modules | |
uses: actions/cache@v3.3.2 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node_modules-${{ hashFiles('package-lock.json') }} | |
- run: npm install | |
# NOTE: Disabled `lint-go` for now as it broke unexpectedly ("golint: Command not found") | |
#- run: go get -u golang.org/x/lint/golint | |
#- run: make lint | |
- run: make lint-js | |
test: | |
needs: lint | |
strategy: | |
matrix: | |
include: | |
- os: macos-latest | |
- os: ubuntu-latest | |
- os: windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '^1.14.3' | |
- name: Cache node modules | |
uses: actions/cache@v3.3.2 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node_modules-${{ hashFiles('package-lock.json') }} | |
- run: npm install | |
- run: make test |